Skip to content

Commit

Permalink
Update AndroidBuild.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ammar-Ishfaq committed Jan 10, 2024
1 parent 7265503 commit 6d83a98
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/AndroidBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit 6d83a98

Please sign in to comment.