Skip to content

Commit

Permalink
Fix actions
Browse files Browse the repository at this point in the history
- add cargo update to cicd
  • Loading branch information
devyatkinalexandr authored Dec 26, 2022
1 parent 8980b41 commit 707e749
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/general.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ jobs:
profile: minimal
toolchain: stable
override: true

- name: Run cargo update
uses: actions-rs/cargo@v1
with:
command: update
- name: Run cargo test
uses: actions-rs/cargo@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
with:
toolchain: stable
override: true
- name: Run cargo update
uses: actions-rs/cargo@v1
with:
command: update
- uses: katyo/publish-crates@v1
with:
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 comments on commit 707e749

Please sign in to comment.