From 1952b8f6abbc3651e9f8aba1df1e3a6cc2f0a260 Mon Sep 17 00:00:00 2001 From: Daisuke Murase Date: Fri, 17 Jan 2025 10:42:18 -0800 Subject: [PATCH 1/2] Trying to fix publish workflow --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f90b522d4..f8d1dcf96 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -45,6 +45,9 @@ jobs: - uses: actions/checkout@v3 with: submodules: true + - name: Fetch all tags + run: | + git fetch --tags - name: Publish crates run: | git tag --points-at HEAD | From a0837f8ead0311795408c9eeae4605ca74598739 Mon Sep 17 00:00:00 2001 From: Daisuke Murase Date: Fri, 17 Jan 2025 10:49:42 -0800 Subject: [PATCH 2/2] update the resync --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f8d1dcf96..9670190c4 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -45,9 +45,9 @@ jobs: - uses: actions/checkout@v3 with: submodules: true - - name: Fetch all tags + - name: Resync is needed after bump run: | - git fetch --tags + git fetch --tags && git checkout origin/main - name: Publish crates run: | git tag --points-at HEAD |