Skip to content

Commit

Permalink
Merge pull request #2483 from get10101/fix/use-valid-tag-name
Browse files Browse the repository at this point in the history
fix: use valid tag name
  • Loading branch information
bonomat committed Apr 26, 2024
2 parents b400daa + 54b4268 commit 9de0e54
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/android-fastlane.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,14 +200,16 @@ jobs:
- name: Compute the release tag for continues ci build
if: ${{ inputs.tag == 'main' }}
run: |
echo "release_tag=v`date '+%Y-%m-%d %H:%M:%S'`" >> $GITHUB_ENV
echo "release_name=v`date_'+%Y-%m-%d %H:%M:%S'`" >> $GITHUB_ENV
release_tag=$(git describe --tags)
echo "release_tag=$release_tag" >> $GITHUB_ENV
- name: Attach android apks to release
uses: softprops/action-gh-release@v2
if: ${{ inputs.tag == 'main' }}
with:
prerelease: true
name: ${{ env.release_tag }}
name: ${{ env.release_name }}
tag_name: ${{ env.release_tag }}
target_commitish: main
make_latest: false
Expand Down

0 comments on commit 9de0e54

Please sign in to comment.