Skip to content

Commit bac63ce

Browse files
committed
Update kwctl CLI parameters on GitHub action
1 parent e04eae5 commit bac63ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ jobs:
7070
name: Publish Wasm policy artifact to OCI registry with the 'latest' tag
7171
if: ${{ startsWith(github.ref, 'refs/heads/') }}
7272
run: |
73-
./kwctl push -p policy-annotated.wasm registry://${{ env.OCI_TARGET }}:latest
73+
./kwctl push policy-annotated.wasm ${{ env.OCI_TARGET }}:latest
7474
-
7575
name: Publish Wasm policy artifact to OCI registry with the version tag and 'latest'
7676
if: ${{ startsWith(github.ref, 'refs/tags/') }}
7777
run: |
7878
export OCI_TAG=$(echo $GITHUB_REF | sed -e "s|refs/tags/||")
79-
./kwctl push -p policy-annotated.wasm registry://${{ env.OCI_TARGET }}:${OCI_TAG}
79+
./kwctl push policy-annotated.wasm ${{ env.OCI_TARGET }}:${OCI_TAG}
8080
-
8181
name: Create Release
8282
if: ${{ startsWith(github.ref, 'refs/tags/') }}

0 commit comments

Comments
 (0)