Skip to content

Commit

Permalink
Fix release ci step around checkout: (#343)
Browse files Browse the repository at this point in the history
## Description


Fixes GitHub actions error:
"Error: Can't find 'action.yml', 'action.yaml' or 'Dockerfile' under '/home/runner/work/cluster-api-provider-tinkerbell/cluster-api-provider-tinkerbell/.github/actions/setup-go'. Did you forget to run actions/checkout before running your local action?"

## Why is this needed

Release CI is broken.



Fixes: #

## How Has This Been Tested?





## How are existing users impacted? What migration steps/scripts do we need?





## Checklist:

I have:

- [ ] updated the documentation and/or roadmap (if required)
- [ ] added unit or e2e tests
- [ ] provided instructions on how to upgrade
  • Loading branch information
mergify[bot] authored Jan 19, 2024
2 parents ab813f3 + d346814 commit e000762
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: ./.github/actions/setup-go
- uses: actions/setup-go@v5
with:
go-version: "${{ env.GO_VERSION }}"
cache: true

- uses: actions/cache@v4
with:
Expand Down

0 comments on commit e000762

Please sign in to comment.