We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 08924e1 + 7b10317 commit 614fbafCopy full SHA for 614fbaf
1 file changed
.github/workflows/build_ipa.yml
@@ -65,13 +65,10 @@ jobs:
65
echo "app_version=$VERSION" >> "$GITHUB_OUTPUT"
66
67
- name: 7. Deploy to Nightly Release
68
- if: |
69
- env.UPLOAD_IPA == 'true' &&
70
- (github.event_name == 'push' || github.event_name == 'workflow_dispatch') &&
71
- (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/semi-rewrite')
+ if: env.UPLOAD_IPA == 'true' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/main'
72
uses: softprops/action-gh-release@v2
73
with:
74
- tag_name: "Nightly-v${{ steps.version.outputs.app_version }}"
+ tag_name: Nightly
75
name: "Nightly Build - v${{ steps.version.outputs.app_version }}"
76
prerelease: true
77
generate_release_notes: true
0 commit comments