From 0bf096abb5257df425b9c022baef36f2b5a00766 Mon Sep 17 00:00:00 2001 From: Imran <30463115+ImranR98@users.noreply.github.com> Date: Sun, 14 Jan 2024 01:26:17 -0500 Subject: [PATCH] Temporary GitHub action change --- .github/workflows/release.yml | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 690fc81..971d065 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,8 +6,6 @@ on: beta: type: boolean description: Is beta? - environment: - type: environment jobs: build: @@ -61,18 +59,18 @@ jobs: if [ $BETA == true ]; then TAG="$TAG"-beta; fi echo "tag=$TAG" >> $GITHUB_OUTPUT - - name: Create Tag - uses: mathieudutour/github-tag-action@v6.1 - with: - github_token: ${{ secrets.GH_ACCESS_TOKEN }} - custom_tag: "${{ steps.extract_version.outputs.tag }}" - tag_prefix: "" + # - name: Create Tag + # uses: mathieudutour/github-tag-action@v6.1 + # with: + # github_token: ${{ secrets.GH_ACCESS_TOKEN }} + # custom_tag: "${{ steps.extract_version.outputs.tag }}" + # tag_prefix: "" - - name: Create Release And Upload APKs - uses: ncipollo/release-action@v1 - with: - token: ${{ secrets.GH_ACCESS_TOKEN }} - tag: "${{ steps.extract_version.outputs.tag }}" - prerelease: "${{ steps.extract_version.outputs.beta }}" + # - name: Create Release And Upload APKs + # uses: ncipollo/release-action@v1 + # with: + # token: ${{ secrets.GH_ACCESS_TOKEN }} + # tag: "${{ steps.extract_version.outputs.tag }}" + # prerelease: "${{ steps.extract_version.outputs.beta }}" artifacts: ./build/app/outputs/flutter-apk/*-release*.apk* generateReleaseNotes: true