Skip to content

Commit

Permalink
build: add action to upload assets with dist/ folder to the tags
Browse files Browse the repository at this point in the history
  • Loading branch information
jedrzejchalubek committed Jan 19, 2022
1 parent 3675127 commit 914e425
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/upload-assets-to-tags.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Upload assets to tags

on: push

jobs:
build:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm ci
- run: npm test
- run: npm run build
- name: Upload
uses: softprops/action-gh-release@v1
with:
files: dist/*

0 comments on commit 914e425

Please sign in to comment.