Skip to content

Commit

Permalink
ci: add deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikheil committed Jan 31, 2024
1 parent 9adb546 commit 1a5d7df
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Publish package to registry"

on:
release:
types: [published]

jobs:
build-and-publish:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- run: npm version --no-git-tag-version ${GITHUB_REF_NAME#v}
- run: npm ci
- run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 1a5d7df

Please sign in to comment.