Skip to content

Commit

Permalink
🔐 Add GH_TOKEN to steps using gh command
Browse files Browse the repository at this point in the history
  • Loading branch information
phatblat committed Jul 31, 2024
1 parent ba97743 commit bc88359
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
- name: ⤴️ Open PR
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ github.token }}
MAS_VERSION: ${{ needs.start.outputs.mas_version }}
RELEASE_BRANCH: ${{ needs.start.outputs.release_branch }}
run: |
Expand Down Expand Up @@ -126,6 +126,7 @@ jobs:
- name: 🚀 Upload mas.pkg
env:
GH_TOKEN: ${{ github.token }}
DRY_RUN: ${{ needs.start.outputs.dry_run }}
MAS_VERSION: ${{ needs.start.outputs.mas_version }}
if: ${{ needs.start.outputs.dry_run == 'false' }}
Expand Down Expand Up @@ -156,6 +157,7 @@ jobs:
- name: 🚀 Upload Bottles
env:
GH_TOKEN: ${{ github.token }}
DRY_RUN: ${{ needs.start.outputs.dry_run }}
MAS_VERSION: ${{ needs.start.outputs.mas_version }}
if: ${{ needs.start.outputs.dry_run == 'false' }}
Expand Down

0 comments on commit bc88359

Please sign in to comment.