Skip to content

Commit

Permalink
Merge pull request #5 from siketyan/fix-ci-wait
Browse files Browse the repository at this point in the history
ci: Fix waiting crates uploaded
  • Loading branch information
siketyan committed Jul 5, 2022
2 parents e9f1b66 + 9a5bb84 commit 9477be4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:

- name: Wait for the crate uploaded
run: |
until curl -fsSL "https://crates.io/crates/apdu-core/${{ github.event.release.tag_name }}"
until curl -fsSL -H "https://crates.io/api/v1/crates/apdu-core/${{ github.event.release.tag_name }}"
do
echo "Still waiting..."
sleep 5
Expand All @@ -98,7 +98,7 @@ jobs:

- name: Wait for the crate uploaded
run: |
until curl -fsSL "https://crates.io/crates/apdu-derive/${{ github.event.release.tag_name }}"
until curl -fsSL "https://crates.io/api/v1/crates/apdu-derive/${{ github.event.release.tag_name }}"
do
echo "Still waiting..."
sleep 5
Expand Down

0 comments on commit 9477be4

Please sign in to comment.