From febb9f0e052f875e12f584be33e97e7d50a079ed Mon Sep 17 00:00:00 2001 From: Kennedy Oliveira Date: Sat, 27 Jan 2024 20:47:29 -0300 Subject: [PATCH] Use GITHUB_TOKEN instead of GH_PAT --- .github/workflows/release-docker.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release-docker.yml index 357f906..e5dbd1e 100644 --- a/.github/workflows/release-docker.yml +++ b/.github/workflows/release-docker.yml @@ -40,7 +40,7 @@ jobs: with: registry: ghcr.io username: ${{ github.repository_owner }} - password: ${{ secrets.GH_PAT }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9aab370..f8589b9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,7 +61,7 @@ jobs: - name: Upload release artifacts uses: alexellis/upload-assets@0.4.0 env: - GITHUB_TOKEN: ${{ secrets.GH_PAT }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: asset_paths: '["./dist/flaresolverr_*"]'