Skip to content

Commit ff332db

Browse files
Changes
1 parent 99acdf6 commit ff332db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
args: "package"
1515
- name: Identify output file # can be retrieved as steps.filenames.outputs.file_out
1616
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
1818
- uses: actions/upload-artifact@v4
1919
with:
2020
name: ${{ steps.filenames.outputs.file_out }}

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
args: "package"
1919
- name: Identify output file # can be retrieved as steps.filenames.outputs.file_out
2020
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
2222
- uses: actions/upload-artifact@v4
2323
with:
2424
name: ${{ steps.filenames.outputs.file_out }}
@@ -37,7 +37,7 @@ jobs:
3737
path: "artifacts/"
3838
- name: Get version from tag
3939
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
4141
- name: Create release
4242
uses: marvinpinto/action-automatic-releases@latest
4343
with:

0 commit comments

Comments
 (0)