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 Mar 9, 2023
1 parent 7f9506c commit c8cb09e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Publish Package
on:
release:
types: [created]
jobs:
npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
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
- run: cargo publish --token ${CRATESIO_TOKEN}
env:
CRATES_TOKEN: ${{ secrets.CRATESIO_TOKEN }}

0 comments on commit c8cb09e

Please sign in to comment.