Skip to content

Commit

Permalink
add release to crates.io step
Browse files Browse the repository at this point in the history
  • Loading branch information
AnderEnder committed Sep 28, 2019
1 parent 8936c13 commit aabf8fa
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ on:
- 'v*.*.*'

jobs:
release-crates:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: publish package to crates
run: |
cargo package
cargo publish --token ${{ secrets.CARGO_TOKEN }} || true
release-linux:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit aabf8fa

Please sign in to comment.