Skip to content

Commit 128da26

Browse files
committed
fix: Building wheels for deploying releases
1 parent 527c6fe commit 128da26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deployment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,6 @@ jobs:
106106
git show
107107
# Create the tag
108108
git tag "$NEW_VERSION"
109-
# Revert the pin so that future development can continue
110-
git revert HEAD --no-edit
111109
# Output to later steps
112110
echo "create-release=true" >> $GITHUB_OUTPUT
113111
echo "new-version=$NEW_VERSION" >> $GITHUB_OUTPUT
@@ -127,6 +125,8 @@ jobs:
127125
if: steps.check-tag.outputs.create-release == 'true'
128126
run: |
129127
set -e
128+
# Revert the pin on DIRACCommon so that future development can continue
129+
git revert HEAD --no-edit
130130
export NEW_VERSION=${{ steps.check-tag.outputs.new-version }}
131131
echo "Pushing tagged release notes to ${GITHUB_REF#refs/heads/}"
132132
git push "origin" "${GITHUB_REF#refs/heads/}"

0 commit comments

Comments
 (0)