Skip to content

Commit

Permalink
Add auto tagging on release
Browse files Browse the repository at this point in the history
  • Loading branch information
CannonLock committed Jan 30, 2024
1 parent c346bcf commit 2e8cf0e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Update npm version
run: |
cd web_ui/frontend
# Get the current tag and set the package.json version to it
npm version ${GITHUB_REF_NAME:1}
# Add some verbosity
echo "NPM version is now $(npm version)"
- name: Build the website
run: |
make web-build
Expand Down

0 comments on commit 2e8cf0e

Please sign in to comment.