Skip to content

Commit

Permalink
fix(cd): publish the cargo workspace members seperately
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Jun 29, 2021
1 parent f481081 commit acc1d34
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,17 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@main
- name: Publish
- name: Publish the library
uses: actions-rs/cargo@v1
with:
command: publish
args: --locked --token ${{ secrets.CARGO_TOKEN }}
args: |
--manifest-path git-cliff-core/Cargo.toml \
--locked --token ${{ secrets.CARGO_TOKEN }}
- name: Publish the binary
uses: actions-rs/cargo@v1
with:
command: publish
args: |
--manifest-path git-cliff/Cargo.toml \
--locked --token ${{ secrets.CARGO_TOKEN }}

0 comments on commit acc1d34

Please sign in to comment.