Skip to content

Commit

Permalink
Setup semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
raulsteurer committed Sep 20, 2023
1 parent 249d36e commit 683e5a4
Show file tree
Hide file tree
Showing 3 changed files with 5,164 additions and 123 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release
'on':
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: npm
node-version: 18
- run: npm ci
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 683e5a4

Please sign in to comment.