From 6b4b4f9d5c69cc5f38deb47202aed22874f4975f Mon Sep 17 00:00:00 2001 From: Piotr Mlocek Date: Sun, 15 Mar 2026 20:46:56 -0700 Subject: [PATCH] fix(ci): run wheel pruning before moving devel tag --- .github/workflows/release-dev.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release-dev.yml b/.github/workflows/release-dev.yml index 204b289d..02fcefe5 100644 --- a/.github/workflows/release-dev.yml +++ b/.github/workflows/release-dev.yml @@ -327,13 +327,6 @@ jobs: sha256sum *.tar.gz *.whl > openshell-checksums-sha256.txt cat openshell-checksums-sha256.txt - - name: Move devel tag - run: | - git config user.name "github-actions[bot]" - git config user.email "github-actions[bot]@users.noreply.github.com" - git tag -fa devel -m "Latest Devel" "${GITHUB_SHA}" - git push --force origin devel - - name: Prune stale wheel assets from devel release env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -359,6 +352,13 @@ jobs: esac done + - name: Move devel tag + run: | + git config user.name "github-actions[bot]" + git config user.email "github-actions[bot]@users.noreply.github.com" + git tag -fa devel -m "Latest Devel" "${GITHUB_SHA}" + git push --force origin devel + - name: Create / update GitHub Release uses: softprops/action-gh-release@v2 with: