Skip to content

Commit

Permalink
feat: use semantic-release
Browse files Browse the repository at this point in the history
  • Loading branch information
Strobotti committed Mar 27, 2023
1 parent a757e42 commit 4ffeafc
Show file tree
Hide file tree
Showing 4 changed files with 15,973 additions and 5,167 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release
on:
push:
branches:
- main
jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
- name: Install dependencies
run: npm ci
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.15.0
Loading

0 comments on commit 4ffeafc

Please sign in to comment.