File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ name : crates_io_publish_hooq_348912
2+
3+ on :
4+ release :
5+ types : [published]
6+
7+ jobs :
8+ publish :
9+ runs-on : ubuntu-latest
10+ environment : release
11+ permissions :
12+ id-token : write
13+ steps :
14+ - uses : actions/checkout@v5
15+ - uses : rust-lang/crates-io-auth-action@v1
16+ id : auth
17+ - run : cargo publish -p hooq-helpers --dry-run
18+ env :
19+ CARGO_REGISTRY_TOKEN : ${{ steps.auth.outputs.token }}
20+ - run : cargo publish -p hooq-macros --dry-run
21+ env :
22+ CARGO_REGISTRY_TOKEN : ${{ steps.auth.outputs.token }}
23+ - run : cargo publish -p hooq --dry-run
24+ env :
25+ CARGO_REGISTRY_TOKEN : ${{ steps.auth.outputs.token }}
26+ - run : cargo publish -p hooq-helpers
27+ env :
28+ CARGO_REGISTRY_TOKEN : ${{ steps.auth.outputs.token }}
29+ - run : cargo publish -p hooq-macros
30+ env :
31+ CARGO_REGISTRY_TOKEN : ${{ steps.auth.outputs.token }}
32+ - run : cargo publish -p hooq
33+ env :
34+ CARGO_REGISTRY_TOKEN : ${{ steps.auth.outputs.token }}
You can’t perform that action at this time.
0 commit comments