forked from Joohansson/NanoRPCProxy
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from trustwallet/feature/dmytro.vorotyntsev/s…
…c-17599 removed trust-ci token usage
- Loading branch information
Showing
1 changed file
with
2 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,17 +14,13 @@ jobs: | |
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
# Use trust-ci fine-grained PAT to checkout and later commit the code | ||
# trust-ci is allowed to bypass the branch protection | ||
token: ${{ secrets.CI_GITHUB_TOKEN }} | ||
|
||
- name: Calculate version | ||
id: tag-version | ||
uses: mathieudutour/[email protected] | ||
with: | ||
dry_run: true | ||
github_token: ${{ secrets.CI_GITHUB_TOKEN }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# Configure Git | ||
- name: Git configuration | ||
|
@@ -48,4 +44,4 @@ jobs: | |
uses: mathieudutour/[email protected] | ||
with: | ||
custom_tag: ${{ steps.tag-version.outputs.new_version }} | ||
github_token: ${{ secrets.CI_GITHUB_TOKEN }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} |