Skip to content

Commit

Permalink
update tagname again
Browse files Browse the repository at this point in the history
  • Loading branch information
rjawesome authored Jan 2, 2024
1 parent 5b982ae commit 79cbd38
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ jobs:

# release the apk
- name: Set current date as env variable
run: echo "NOW=\"$(git rev-parse --abbrev-ref HEAD)-$(date +'%Y-%m-%dT%H:%M:%S')\"" >> $GITHUB_ENV
run: echo "NOW=\"$(git rev-parse --abbrev-ref HEAD) $(date +'%Y-%m-%dT%H:%M:%S')\" TAG=$(date +%s)" >> $GITHUB_ENV
- name: tag snapshot
uses: tvdias/github-tagger@v0.0.1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ env.NOW }}
tag: ${{ env.TAG }}
- name: create new release
uses: softprops/action-gh-release@v1
with:
files: "build/app/outputs/flutter-apk/app-release.apk"
name: OptixToolkit ${{ env.NOW }}
tag_name: ${{ env.NOW }}
tag_name: ${{ env.TAG }}
draft: false
prerelease: false

Expand Down

0 comments on commit 79cbd38

Please sign in to comment.