We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc3bb80 commit 94d5ddcCopy full SHA for 94d5ddc
1 file changed
.github/workflows/ci.yml
@@ -102,7 +102,7 @@ jobs:
102
103
release:
104
name: Release
105
- if: ${{ github.ref == 'refs/heads/main' }}
+ if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
106
runs-on: ubuntu-latest
107
needs: [build-windows, build-android]
108
steps:
@@ -121,9 +121,6 @@ jobs:
121
VERSION="${{ steps.yq.outputs.result }}"
122
TAG_NAME="v${VERSION%%+*}"
123
echo "TAG_NAME=$TAG_NAME" >> "$GITHUB_OUTPUT"
124
- echo "Creating new tag $TAG_NAME..."
125
- git tag "$TAG_NAME"
126
- git push origin "$TAG_NAME"
127
- name: Eextract log
128
run: python extract_log.py ${{ steps.create_tag.outputs.TAG_NAME }}
129
- name: Download artifact
0 commit comments