Skip to content

Commit 695ab03

Browse files
committed
ci: fix Layer 3b verify-capabilities wiring + bump setup-wfctl to v0.63.2 (workflow#765)
Layer 3b extension's verify-capabilities step references ${{ runner.temp }}/wfctl-bin/wfctl but no curl-install step exists in this repo (uses setup-wfctl@v1 PATH install pattern instead). Fix by (a) bumping setup-wfctl pin → v0.63.2 (carries actual subcommand per #769) and (b) switching verify-capabilities invocation to PATH wfctl.
1 parent c2bd798 commit 695ab03

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
go-version-file: go.mod
1919
- uses: GoCodeAlone/setup-wfctl@v1
2020
with:
21-
version: v0.61.0
21+
version: v0.63.2
2222
- name: Validate plugin contract for publish (pre-build)
2323
run: wfctl plugin validate-contract --for-publish --tag "${{ github.ref_name }}" .
2424
- uses: goreleaser/goreleaser-action@v7
@@ -42,7 +42,7 @@ jobs:
4242
jq '.[] | {name, type, goos, goarch, path}' dist/artifacts.json
4343
exit 0
4444
fi
45-
"${{ runner.temp }}/wfctl-bin/wfctl" plugin verify-capabilities --binary "$BIN" .
45+
wfctl plugin verify-capabilities --binary "$BIN" .
4646
- name: Verify shipped plugin.json carries tag (post-build)
4747
run: |
4848
if [ -f .release/plugin.json ]; then

0 commit comments

Comments
 (0)