Skip to content

Commit

Permalink
Merge pull request #8 from arafaysaleem/hotfix/fix-release-CI
Browse files Browse the repository at this point in the history
ci(Actions): Fix token for upload artifact action in release workflow
  • Loading branch information
arafaysaleem authored Jun 7, 2021
2 parents 588b873 + f989bd5 commit 7e28f02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/PR-merge-build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ jobs:
with:
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"
custom_release_rules: "ci:patch:CI/CD,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 }}"
token: ${{ secrets.EZ_TICKETS_APP_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload apks to google drive
uses: mkrakowitzer/actions-googledrive@1
with:
Expand Down

0 comments on commit 7e28f02

Please sign in to comment.