Skip to content

Commit

Permalink
ci(Actions): Fix token for bump tag action in release workflow
Browse files Browse the repository at this point in the history
Signed-off-by: arafaysaleem <a.rafaysaleem@gmail.com>
  • Loading branch information
arafaysaleem committed Jun 7, 2021
1 parent c92a835 commit b6dfce2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/PR-merge-build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ jobs:
id: generate_tag
uses: mathieudutour/github-tag-action@v5.5
with:
github_token: ${{ secrets.EZ_TICKETS_APP_TOKEN }}
github_token: ${{ secrets.GITHUB_TOKEN }}
default_bump: minor # major, minor, patch, false
custom_release_rules: "chore:patch:Chore Tasks,hotfix:minor:Bug Fixes,refact:patch:Refactors,docs:patch:Documentation Changes,build:patch:Build System/Dependency Upgrades"
- name: Upload release apk to artifacts
uses: ncipollo/release-action@v1.8.6
with:
tag: "${{ steps.generate_tag.outputs.new_tag }}"
artifacts: "build/app/outputs/apk/release/app-arm*.apk"
name: Release ${{ steps.generate_tag.outputs.new_tag }}
body: ${{ steps.generate_tag.outputs.changelog }}
name: "Release ${{ steps.generate_tag.outputs.new_tag }}"
body: "${{ steps.generate_tag.outputs.changelog }}"
token: ${{ secrets.EZ_TICKETS_APP_TOKEN }}
- name: Upload apks to google drive
uses: mkrakowitzer/actions-googledrive@1
Expand Down

0 comments on commit b6dfce2

Please sign in to comment.