Skip to content

Commit

Permalink
Merge pull request #333 from VOID404/fix-pipelines-again
Browse files Browse the repository at this point in the history
Fix all checkouts in CRA
  • Loading branch information
VOID404 committed Sep 5, 2024
2 parents 6c2d9cb + 883168f commit 8b3cd70
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/cra.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
repository: ${{ github.repository}}
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Set up go environment
uses: actions/setup-go@v5
with:
Expand All @@ -79,10 +79,11 @@ jobs:
{
echo '## Test Log'
echo '```'
make test
echo '```'
} >> $GITHUB_STEP_SUMMARY
make test | tee $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
k3d-integration:
# we're using reusable because we can't modify workflows as contributors
# it could cause the secret leakeages
Expand Down

0 comments on commit 8b3cd70

Please sign in to comment.