Skip to content

Commit b66a789

Browse files
Update GitHub Actions workflow to reintroduce the push changes step after committing version updates, ensuring that changes are pushed to the repository following version increments.
1 parent 5df8e4e commit b66a789

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,16 @@ jobs:
4848
echo "BUILD=false" >> $GITHUB_ENV
4949
fi
5050
51-
- name: Push changes
52-
run: git push
53-
5451
- name: Update version in __init__.py
5552
run: |
5653
sed -i "s/__version__ = \"${VERSION}\"/__version__ = \"${NEW_VERSION}\"/" syne_sql_extension/__init__.py
5754
5855
- name: Commit changes
5956
run: git config user.name "SyneHQ" && git config user.email "engineering@synehq.com" && git add . && git commit -m "Bump version to ${NEW_VERSION}"
6057

58+
- name: Push changes
59+
run: git push
60+
6161
- name: Build package
6262
run: |
6363
if [ "$BUILD" = "true" ]; then

0 commit comments

Comments
 (0)