Commit ff332db 1 parent 99acdf6 commit ff332db Copy full SHA for ff332db
File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 14
14
args : " package"
15
15
- name : Identify output file # can be retrieved as steps.filenames.outputs.file_out
16
16
id : filenames
17
- run : echo "::set-output name= file_out:: $(ls | grep "\.vsix$" | head -1)"
17
+ run : echo "file_out= $(ls | grep "\.vsix$" | head -1)" >> $GITHUB_OUTPUT
18
18
- uses : actions/upload-artifact@v4
19
19
with :
20
20
name : ${{ steps.filenames.outputs.file_out }}
Original file line number Diff line number Diff line change 18
18
args : " package"
19
19
- name : Identify output file # can be retrieved as steps.filenames.outputs.file_out
20
20
id : filenames
21
- run : echo "::set-output name= file_out:: $(ls | grep "\.vsix$" | head -1)"
21
+ run : echo "file_out= $(ls | grep "\.vsix$" | head -1)" >> $GITHUB_OUTPUT
22
22
- uses : actions/upload-artifact@v4
23
23
with :
24
24
name : ${{ steps.filenames.outputs.file_out }}
37
37
path : " artifacts/"
38
38
- name : Get version from tag
39
39
id : get_version
40
- run : echo ::set-output name= version:: ${GITHUB_REF/refs\/tags\/v/}
40
+ run : echo " version= ${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_OUTPUT
41
41
- name : Create release
42
42
uses : marvinpinto/action-automatic-releases@latest
43
43
with :
You can’t perform that action at this time.
0 commit comments