Skip to content

Commit 964ca91

Browse files
feat: add crates_io_publish_hooq_348912.yml
1 parent 1fe9935 commit 964ca91

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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 }}

0 commit comments

Comments
 (0)