Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: use valid tag name #2483

Merged
merged 1 commit into from
Apr 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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