Skip to content

Commit

Permalink
Publish package with GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
verhovsky committed Dec 4, 2022
1 parent 4488aa4 commit 3d63a7c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Publish Package
on:
release:
types: [created]
jobs:
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '14'
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

cargo:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- uses: katyo/publish-crates@v1
with:
registry-token: ${{ secrets.CRATESIO_TOKEN }}

0 comments on commit 3d63a7c

Please sign in to comment.