Skip to content
This repository has been archived by the owner on Apr 29, 2024. It is now read-only.

Commit

Permalink
ci: add PAT so that tag generated from CI will trigger the docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
MSevey committed Jan 12, 2024
1 parent 401f8a9 commit 8e647f2
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,12 @@ jobs:
release:
needs: [lint, test]
runs-on: ubuntu-latest
if: |
github.event_name == 'workflow_dispatch' ||
(github.event_name == 'push' && contains(github.ref, 'refs/tags/v'))
if: ${{ github.event_name == 'workflow_dispatch' }}
permissions: "write-all"
steps:
- uses: actions/checkout@v4
- name: Version Release
uses: rollkit/.github/.github/actions/[email protected]
with:
github-token: ${{secrets.GITHUB_TOKEN}}
github-token: ${{secrets.PAT_FOR_DOCKER_TRIGGER}}
version-bump: ${{inputs.version}}

0 comments on commit 8e647f2

Please sign in to comment.