Skip to content

Commit

Permalink
ci(release): initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m committed Jan 13, 2023
1 parent 8bb6e31 commit 1768eaa
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
@@ -0,0 +1,22 @@
name: Release
on:
push:
branches:
- main
- next
- beta
- "*.x" # maintenance releases such as 2.x

jobs:
release:
name: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 1768eaa

Please sign in to comment.