Skip to content

Commit 20b6127

Browse files
committed
release.yml: also publish rand_pcg
1 parent 5be23a3 commit 20b6127

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ jobs:
1414
- uses: actions/checkout@v6
1515
- uses: rust-lang/crates-io-auth-action@v1
1616
id: auth
17-
- run: cargo publish
17+
- name: Publish rand_pcg
18+
working-directory: ./rand_pcg
19+
run: cargo publish
20+
env:
21+
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}
22+
- name: Publish rand
23+
run: cargo publish
1824
env:
1925
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}

0 commit comments

Comments
 (0)