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 ee23a5b commit 251d82bCopy full SHA for 251d82b
.github/workflows/eas-build.yml
@@ -116,10 +116,10 @@ jobs:
116
# run: pnpm build:${{ inputs.environment }}:${{ matrix.platform }} --non-interactive --no-wait --message "Build ${{ inputs.environment }} for ${{ matrix.platform }}" --local
117
118
- name: 📦 Push changes to repository
119
- continue-on-error: true
120
if: inputs.new-version
121
run: |
122
- git push
+ # Return 0 if push fails and echo an error message
+ git push || echo "Skipping push: version was already updated."
123
124
- name: Upload ${{ matrix.platform }} Build
125
uses: actions/upload-artifact@v4
0 commit comments