Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,5 @@ jobs:
git add package.json package-lock.json
git commit -m "Bump version to ${{ inputs.version }} [skip ci]"
git tag "v${{ inputs.version }}"
git push --follow-tags
git push
git push origin "v${{ inputs.version }}"
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
name: Lint & test & build & publish release

# Controls when the workflow will run
on:
workflow_dispatch:
release:
types: [released]

# permissions are needed if pushing to ghcr.io
permissions:
packages: write
contents: write

jobs:
lint-test:
Expand Down Expand Up @@ -61,7 +59,7 @@ jobs:
- if: steps.node-modules-cache.outputs.cache-hit != 'true'
run: npm ci

- run: npm run build
- run: npm run build:prod

- run: zip -r dist-${{ github.event.release.tag_name }}.zip dist

Expand Down
Loading