Skip to content

Commit

Permalink
Merge pull request #130 from ariel-miculas/fix_publish
Browse files Browse the repository at this point in the history
Fix the github publish action
  • Loading branch information
ariel-miculas authored Sep 18, 2024
2 parents 4afc76a + 443ee53 commit d25d30a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
- run: make lint check
- name: publish
if: startsWith(github.ref, 'refs/tags/') && github.event_name == 'push'
run: cargo publish --token ${CRATES_TOKEN}
run: |
cargo publish -p puzzlefs-lib --token ${CRATES_TOKEN}
cargo publish -p puzzlefs --token ${CRATES_TOKEN}
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}

0 comments on commit d25d30a

Please sign in to comment.