We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d9d308 commit 6d35d86Copy full SHA for 6d35d86
.github/workflows/release.actions.yml
@@ -27,7 +27,7 @@ jobs:
27
id: check_changes
28
run: |
29
LAST_RELEASE_SHA=$(git rev-list --tags --max-count=1)
30
- LAST_COMMIT_SHA=$(git rev-parse HEAD)
+ LAST_COMMIT_SHA=$(git rev-parse HEAD~2)
31
32
if [ "$LAST_RELEASE_SHA" == "$LAST_COMMIT_SHA" ]; then
33
echo "No changes since last release. Skipping..."
@@ -100,4 +100,4 @@ jobs:
100
- name: Push changes to ${{github.base_ref}} branch
101
if: steps.check_changes.outputs.skip == 'false'
102
103
- git push
+ git push
0 commit comments