Skip to content

Commit

Permalink
Fix cargo publish
Browse files Browse the repository at this point in the history
  • Loading branch information
zkxs committed Aug 11, 2024
1 parent a2a6939 commit c9e7d20
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ on:
secrets:
CARGO_REGISTRY_TOKEN:
required: true
CARGO_REGISTRY_TOKEN_LINE_CARDINALITY:
required: true
jobs:
publish:
runs-on: ubuntu-latest
Expand All @@ -27,7 +29,11 @@ jobs:
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Publish
run: cargo publish
- name: Publish line_cardinality
run: cargo publish --package line_cardinality
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN_LINE_CARDINALITY }}
- name: Publish cuniq
run: cargo publish --package cuniq
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 comments on commit c9e7d20

Please sign in to comment.