Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/release-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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:
Expand Down
Loading