From a4af50b80da373f2cc24e7ec3c907b9c933d48f3 Mon Sep 17 00:00:00 2001 From: daxpedda Date: Mon, 27 Nov 2023 16:24:01 +0100 Subject: [PATCH] Fix `publish` workflow --- .github/workflows/bump.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bump.yml b/.github/workflows/bump.yml index 807a3a21a1d..89e43bf7172 100644 --- a/.github/workflows/bump.yml +++ b/.github/workflows/bump.yml @@ -49,7 +49,7 @@ jobs: - uses: dtolnay/rust-toolchain@stable - run: rustc publish.rs - name: assert we're on bump branch - run: test "$(git git branch --show-current)" = "bump" + run: test "$(git branch --show-current)" = "bump" - run: ./publish publish env: CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}