File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -106,8 +106,6 @@ jobs:
106
106
git show
107
107
# Create the tag
108
108
git tag "$NEW_VERSION"
109
- # Revert the pin so that future development can continue
110
- git revert HEAD --no-edit
111
109
# Output to later steps
112
110
echo "create-release=true" >> $GITHUB_OUTPUT
113
111
echo "new-version=$NEW_VERSION" >> $GITHUB_OUTPUT
@@ -127,6 +125,8 @@ jobs:
127
125
if : steps.check-tag.outputs.create-release == 'true'
128
126
run : |
129
127
set -e
128
+ # Revert the pin on DIRACCommon so that future development can continue
129
+ git revert HEAD --no-edit
130
130
export NEW_VERSION=${{ steps.check-tag.outputs.new-version }}
131
131
echo "Pushing tagged release notes to ${GITHUB_REF#refs/heads/}"
132
132
git push "origin" "${GITHUB_REF#refs/heads/}"
You can’t perform that action at this time.
0 commit comments