From 379c153fa76eb6774bd7d15ba9b4b2314d7170fe Mon Sep 17 00:00:00 2001 From: Avi Miller Date: Mon, 10 Oct 2022 08:31:12 +1100 Subject: [PATCH] ci: switch tokens to enable release action to update main branch Signed-off-by: Avi Miller --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5bb90f7..db213d0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,6 +70,7 @@ jobs: steps: - uses: actions/checkout@v3 with: + token: ${{ secrets.GH_TOKEN }} fetch-depth: 0 # Run semantic release: @@ -81,5 +82,5 @@ jobs: - name: Python Semantic Release uses: relekang/python-semantic-release@v7.32.1 with: - github_token: ${{ secrets.GITHUB_TOKEN }} + github_token: ${{ secrets.GH_TOKEN }} pypi_token: ${{ secrets.PYPI_TOKEN }}