Update release.yml

This commit is contained in:
Imran
2024-01-14 01:36:35 -05:00
committed by GitHub
parent be1a793a37
commit e8b9654320

View File

@ -33,7 +33,6 @@ jobs:
TAG="v$VERSION" TAG="v$VERSION"
if [ $BETA == true ]; then TAG="$TAG"-beta; fi if [ $BETA == true ]; then TAG="$TAG"-beta; fi
echo "tag=$TAG" >> $GITHUB_OUTPUT echo "tag=$TAG" >> $GITHUB_OUTPUT
echo "$VERSION" "$TAG" "$BETA"
- name: Build APKs - name: Build APKs
run: | run: |
@ -60,18 +59,18 @@ jobs:
rm apksign.keystore rm apksign.keystore
PGP_KEY_FINGERPRINT="${{ steps.import_pgp_key.outputs.fingerprint }}" PGP_KEY_FINGERPRINT="${{ steps.import_pgp_key.outputs.fingerprint }}"
# - name: Create Tag - name: Create Tag
# uses: mathieudutour/github-tag-action@v6.1 uses: mathieudutour/github-tag-action@v6.1
# with: with:
# github_token: ${{ secrets.GH_ACCESS_TOKEN }} github_token: ${{ secrets.GH_ACCESS_TOKEN }}
# custom_tag: "${{ steps.extract_version.outputs.tag }}" custom_tag: "${{ steps.extract_version.outputs.tag }}"
# tag_prefix: "" tag_prefix: ""
# - name: Create Release And Upload APKs - name: Create Release And Upload APKs
# uses: ncipollo/release-action@v1 uses: ncipollo/release-action@v1
# with: with:
# token: ${{ secrets.GH_ACCESS_TOKEN }} token: ${{ secrets.GH_ACCESS_TOKEN }}
# tag: "${{ steps.extract_version.outputs.tag }}" tag: "${{ steps.extract_version.outputs.tag }}"
# prerelease: "${{ steps.extract_version.outputs.beta }}" prerelease: "${{ steps.extract_version.outputs.beta }}"
# artifacts: ./build/app/outputs/flutter-apk/*-release*.apk* artifacts: ./build/app/outputs/flutter-apk/*-release*.apk*
# generateReleaseNotes: true generateReleaseNotes: true