Skip to content

Commit

Permalink
Another version fix attempt (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
boswelja authored Mar 29, 2024
1 parent 588c938 commit dd7eaab
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,15 @@ jobs:
with:
name: nasdroid-release

- name: Calculate release version
id: calculate-version
run: echo "::set-output name=version::$(date +'%Y.%-m')"

- name: Create GitHub Release
uses: ncipollo/release-action@v1
with:
tag: $(date +'%Y.%-m')
tag: ${{ steps.calculate-version.outputs.version }}
artifacts: "app-release.apk,app-release.aab"
prerelease: ${{ github.event.inputs.prerelease }}
makeLatest: true
generateReleaseNotes: true
generateReleaseNotes: true

0 comments on commit dd7eaab

Please sign in to comment.