Skip to content

Commit d48e3f1

Browse files
Tweak actions
1 parent 3c17f4b commit d48e3f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
args: "package"
1212
- name: Identify output file # can be retrieved as steps.filenames.outputs.file_out
1313
id: filenames
14-
run: echo "::set-output name=file_out::$(ls | grep "^r-debugger-.*\.vsix$" | head -1)"
14+
run: echo "::set-output name=file_out::$(ls | grep "^.*\.vsix$" | head -1)"
1515
- uses: actions/upload-artifact@v1
1616
with:
1717
name: ${{ steps.filenames.outputs.file_out }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
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 "^r-debugger-.*\.vsix$" | head -1)"
21+
run: echo "::set-output name=file_out::$(ls | grep "^.*\.vsix$" | head -1)"
2222
- uses: actions/upload-artifact@v1
2323
with:
2424
name: ${{ steps.filenames.outputs.file_out }}

0 commit comments

Comments
 (0)