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 439380d commit 402d40f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/AndroidBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,16 @@ jobs:
id: determine_version
run: echo "::set-output name=version::$(date +'%Y%m%d%H%M%S')"

- name: Create Temporary Tag
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 }}

- name: Create Release
uses: softprops/action-gh-release@v1
with:
files: composeApp/build/outputs/apk/debug/composeApp-debug.apk
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ steps.determine_version.outputs.version }}
tag: temp-${{ steps.determine_version.outputs.version }}
title: Release ${{ steps.determine_version.outputs.version }}

0 comments on commit 402d40f

Please sign in to comment.