Skip to content

Commit 1b9f35c

Browse files
authored
fix(ci): run wheel pruning before moving devel tag (#334)
1 parent d84a8f7 commit 1b9f35c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release-dev.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -327,13 +327,6 @@ jobs:
327327
sha256sum *.tar.gz *.whl > openshell-checksums-sha256.txt
328328
cat openshell-checksums-sha256.txt
329329
330-
- name: Move devel tag
331-
run: |
332-
git config user.name "github-actions[bot]"
333-
git config user.email "github-actions[bot]@users.noreply.github.com"
334-
git tag -fa devel -m "Latest Devel" "${GITHUB_SHA}"
335-
git push --force origin devel
336-
337330
- name: Prune stale wheel assets from devel release
338331
env:
339332
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -359,6 +352,13 @@ jobs:
359352
esac
360353
done
361354
355+
- name: Move devel tag
356+
run: |
357+
git config user.name "github-actions[bot]"
358+
git config user.email "github-actions[bot]@users.noreply.github.com"
359+
git tag -fa devel -m "Latest Devel" "${GITHUB_SHA}"
360+
git push --force origin devel
361+
362362
- name: Create / update GitHub Release
363363
uses: softprops/action-gh-release@v2
364364
with:

0 commit comments

Comments
 (0)