Skip to content

Commit

Permalink
chore(operator): fix GH_TOKEN name
Browse files Browse the repository at this point in the history
  • Loading branch information
JoaoBraveCoding committed Apr 9, 2024
1 parent 42b19a9 commit 299c426
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Check main commits for prepare release commit
id: check_commit
env:
GH_TOKEN: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
working-directory: "release"
run: |
COMMIT=$(gh search commits "chore(operator): prepare community release v${{ steps.pr_semver.outputs.semver }}")
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/operator-release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
path: operator
config-file: operator/release-please-config.json
token: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
token: ${{ secrets.GH_TOKEN }}
publishRelease:
needs:
- "releasePlease"
Expand All @@ -36,7 +36,7 @@ jobs:
path: "release"
- name: "publish release"
env:
GH_TOKEN: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
working-directory: "release"
run: |
gh release edit "${{ needs.releasePlease.outputs.release_name }}" --draft=false --latest=false

0 comments on commit 299c426

Please sign in to comment.