Skip to content

Commit d661f1e

Browse files
committed
maint: fixing again on master
1 parent 312b5b5 commit d661f1e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- '*'
66
jobs:
77
build:
8-
name: Build vscode extension for ${{ github.ref }}
8+
name: Build vscode extension for ${{ github.ref_name }}
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
@@ -17,13 +17,13 @@ jobs:
1717
npm ci
1818
npm i -g @vscode/vsce
1919
npm run compile
20-
vsce package -o gwirl-vscode-${{ github.ref }}.vsix
20+
vsce package -o gwirl-vscode-${{ github.ref_name }}.vsix
2121
- name: upload artifact
2222
uses: actions/upload-release-asset@v1
2323
env:
2424
GITHUB_TOKEN: ${{ github.token }}
2525
with:
2626
upload_url: ${{ steps.create_release.outputs.upload_url }}
27-
asset_path: ./gwirl-vscode-${{ github.ref }}.vsix
28-
asset_name: gwirl-vscode-${{ github.ref }}.vsix
27+
asset_path: ./gwirl-vscode-${{ github.ref_name }}.vsix
28+
asset_name: gwirl-vscode-${{ github.ref_name }}.vsix
2929
asset_content_type: application/zip

0 commit comments

Comments
 (0)