From 6d83a98042ae4dc148b324389af8294e3fc35737 Mon Sep 17 00:00:00 2001 From: Ammar Ishfaq Date: Wed, 10 Jan 2024 14:04:16 +0500 Subject: [PATCH] Update AndroidBuild.yml --- .github/workflows/AndroidBuild.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/AndroidBuild.yml b/.github/workflows/AndroidBuild.yml index a53e191..61551f5 100644 --- a/.github/workflows/AndroidBuild.yml +++ b/.github/workflows/AndroidBuild.yml @@ -53,12 +53,14 @@ jobs: run: git tag -a temp-${{ steps.determine_version.outputs.version }} -m "Temporary Tag" - name: Push Temporary Tag - run: git push origin temp-${{ steps.determine_version.outputs.version }} + run: | + git push origin temp-${{ steps.determine_version.outputs.version }} --tags --quiet -u ${{ secrets.ACCESSTOKEN }} + echo "Pushed the temporary tag" - name: Create Release uses: softprops/action-gh-release@v1 with: files: composeApp/build/outputs/apk/debug/composeApp-debug.apk - repo_token: ${{ secrets.ACCESS_TOKEN }} + repo_token: ${{ secrets.ACCESSTOKEN }} tag: temp-${{ steps.determine_version.outputs.version }} title: Release ${{ steps.determine_version.outputs.version }}