Skip to content
This repository was archived by the owner on Mar 9, 2025. It is now read-only.

Commit 458f668

Browse files
authored
Merge pull request #17 from trey-wallis/dev
Fix variable
2 parents b23d940 + e247dce commit 458f668

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/release.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,16 @@ jobs:
1717
run: |
1818
npm install
1919
npm run build
20+
- name: Set tag variable
21+
id: set-tag-var
22+
run: |
23+
echo "::set-output name=tag::$(git describe --abbrev=0) --tags"
2024
- name: Update version in manifest.json
2125
id: update-version
2226
run: |
2327
sed "s/0\.1\.0/$TAG/" manifest.json
2428
env:
25-
TAG: ${{ github.ref }}
29+
TAG: ${{ steps.vars.outputs.tag }}
2630
# Create the release on github
2731
- name: Create Release
2832
id: create_release

0 commit comments

Comments
 (0)