diff options
author | Nejc Habjan <hab.nejc@gmail.com> | 2021-06-09 21:38:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-09 21:38:39 +0200 |
commit | 161bb0bf1684374ed01c4e3bc8ebc2f5afe7546b (patch) | |
tree | a81d2c6b2c29926fb758a32f239aca908fb2c965 | |
parent | 093db9d129e0a113995501755ab57a04e461c745 (diff) | |
parent | d175d416d5d94f4806f4262e1f11cfee99fb0135 (diff) | |
download | gitlab-161bb0bf1684374ed01c4e3bc8ebc2f5afe7546b.tar.gz |
Merge pull request #1489 from python-gitlab/chore/release-action-gh-token
chore(ci): use PAT for release workflow
-rw-r--r-- | .github/workflows/release.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9f412cc..ade71ef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,8 +12,9 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 + token: ${{ secrets.RELEASE_GITHUB_TOKEN }} - name: Python Semantic Release uses: relekang/python-semantic-release@master with: - github_token: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.RELEASE_GITHUB_TOKEN }} pypi_token: ${{ secrets.PYPI_TOKEN }} |