From a556eb1399a2d476e6423baa1b44783d6511f663 Mon Sep 17 00:00:00 2001 From: Jeb Bearer Date: Fri, 15 Mar 2024 12:12:20 -0400 Subject: [PATCH] Add cargo registry token --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5c62943..c87023c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -136,9 +136,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@stable - uses: katyo/publish-crates@v2 with: # Only do an actual publish if this is a push to a release tag. Otherwise, do a dry run. dry-run: ${{ !(github.event_name == 'push' && github.ref_type == 'tag') }} - ignore-unpublished-changes: true \ No newline at end of file + ignore-unpublished-changes: true + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} \ No newline at end of file