We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1279a11 commit c73990cCopy full SHA for c73990c
.github/workflows/publish.yml
@@ -4,7 +4,7 @@
4
name: Publish
5
on: workflow_dispatch
6
env:
7
- CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
+ CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
8
jobs:
9
cargo-publish:
10
runs-on: ubuntu-latest
@@ -16,6 +16,6 @@ jobs:
16
with:
17
toolchain: stable
18
- name: Publish bindgen (lib)
19
- run: cargo publish --package bindgen --token ${CRATES_TOKEN}
+ run: cargo publish --package bindgen --token ${CARGO_REGISTRY_TOKEN}
20
- name: Publish bindgen-cli
21
- run: cargo publish --package bindgen-cli --token ${CRATES_TOKEN}
+ run: cargo publish --package bindgen-cli --token ${CARGO_REGISTRY_TOKEN}
0 commit comments