Skip to content

Commit

Permalink
Fix workflows env github token
Browse files Browse the repository at this point in the history
  • Loading branch information
StaehliJ committed Jul 25, 2023
1 parent a464724 commit 517cee6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
env:
DEMO_KEY_PASSWORD: ${{ secrets.DEMO_KEY_PASSWORD }}
USERNAME: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ github.token }}

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
env:
DEMO_KEY_PASSWORD: ${{ secrets.DEMO_KEY_PASSWORD }}
USERNAME: ${{ github.actor }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VERSION_NAME: ${{ GITHUB_REF_NAME }}
GITHUB_TOKEN: ${{ github.token }}
VERSION_NAME: ${{ github.ref_name }}

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 517cee6

Please sign in to comment.