Skip to content

Commit

Permalink
Fix github token env
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Lourie <[email protected]>
  • Loading branch information
alourie committed Feb 4, 2025
1 parent 009fd5b commit 9015beb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,14 @@ jobs:
if: ${{ github.ref_name == 'main' }}
container: zepben/pipeline-basic
needs: [precheck, build-basic-pipeline, build-java-amazoncorretto]
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}


steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ env.GITHUB_TOKEN }}

- name: Work around git permission issue
run: |
Expand Down

0 comments on commit 9015beb

Please sign in to comment.