Skip to content

Commit ec0ec43

Browse files
committed
fix: Update environment variables for publish crate action
The variables had been changed, which was causing the CI job to fail. And the CI job isn't marked as required, so nobody noticed.
1 parent 6b0b2ec commit ec0ec43

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/rust-workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
needs: rust
4848
uses: famedly/backend-build-workflows/.github/workflows/publish-crate.yml@fcc2ec82a725d5c4c9c6a8f19e8df101c178dcb6
4949
with:
50-
registry-name: "crates-io"
51-
registry-index: "https://github.com/rust-lang/crates.io-index"
50+
crate_registry_name: "crates-io"
51+
crate_registry_index_url: "https://github.com/rust-lang/crates.io-index"
5252
secrets:
53-
CI_SSH_PRIVATE_KEY: ${{ secrets.CI_SSH_PRIVATE_KEY }}
54-
registry-auth-token: ${{ secrets.CRATES_IO_TOKEN }}
53+
CRATE_REGISTRY_SSH_PRIVKEY: ${{ secrets.CI_SSH_PRIVATE_KEY }}
54+
CRATE_REGISTRY_AUTH_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}

0 commit comments

Comments
 (0)