From d6b336d5b3a743220ecb28e7c600b7e317e10677 Mon Sep 17 00:00:00 2001 From: Alan Chen Date: Tue, 26 Sep 2023 16:49:12 -0700 Subject: [PATCH] chore: use working directory chore: fix cargo workspaces publish invocation --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b15a2a08..c2d535b6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,4 +46,6 @@ jobs: with: crate: cargo-workspaces version: latest - - run: cargo workspaces publish --token ${{ secrets.CRATES_TOKEN }} --yes + - name: Publish + run: cargo workspaces publish --token ${{ secrets.CRATES_TOKEN }} --from-git --yes +