Skip to content

Commit

Permalink
ci: Use GITHUB_TOKEN in place of PAT
Browse files Browse the repository at this point in the history
  • Loading branch information
sithlord48 authored and nbolton committed Oct 31, 2024
1 parent da64ca5 commit 8c314ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ jobs:
if: (github.ref == 'refs/heads/master') && !(contains(github.ref, '/tags/v'))
uses: crowbarmaster/GH-Automatic-Releases@latest
with:
repo_token: "${{ secrets.DEPLOY_TOKEN }}"
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "continuous"
prerelease: false
title: "Continuous Build"
Expand All @@ -323,7 +323,7 @@ jobs:
if: contains(github.ref, '/tags/v')
uses: crowbarmaster/GH-Automatic-Releases@latest
with:
repo_token: "${{ secrets.DEPLOY_TOKEN }}"
repo_token: "${{ secrets.GITHUB_TOKEN }}"
prerelease: false
files: |
package-*/*
Expand Down

0 comments on commit 8c314ad

Please sign in to comment.