Skip to content

Commit

Permalink
use automatic GITHUB_TOKEN var
Browse files Browse the repository at this point in the history
  • Loading branch information
Thiht committed Mar 15, 2024
1 parent 8e30791 commit 5a756b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

build:
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GH_TOKEN }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand All @@ -135,4 +135,4 @@ jobs:
uses: softprops/action-gh-release@v2
with:
files: build/smocker.tar.gz
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5a756b2

Please sign in to comment.