We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d32079 commit d39d08eCopy full SHA for d39d08e
.github/workflows/release.yml
@@ -22,14 +22,17 @@ jobs:
22
run: npm install
23
24
- name: Build package
25
- run: npm run build
+ id: build
26
+ run: |
27
+ VERSION=$(jq ".version" package.json -r)
28
+ echo "::set-output name=version::$VERSION"
29
+ npm run build
30
31
- name: Create release tarball
- id: create_tarball
32
run: npm pack
33
34
- name: Release
35
uses: softprops/action-gh-release@v2
36
with:
37
files: |
- wext-manifest-loader-${{ github.ref_name }}.tgz
38
+ wext-manifest-loader-${{ steps.build.outputs.version }}.tgz
wext-manifest-loader-2.4.3.tgz
8.4 KB
0 commit comments