File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -70,13 +70,13 @@ jobs:
70
70
name : Publish Wasm policy artifact to OCI registry with the 'latest' tag
71
71
if : ${{ startsWith(github.ref, 'refs/heads/') }}
72
72
run : |
73
- ./kwctl push -p policy-annotated.wasm registry:// ${{ env.OCI_TARGET }}:latest
73
+ ./kwctl push policy-annotated.wasm ${{ env.OCI_TARGET }}:latest
74
74
-
75
75
name : Publish Wasm policy artifact to OCI registry with the version tag and 'latest'
76
76
if : ${{ startsWith(github.ref, 'refs/tags/') }}
77
77
run : |
78
78
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}
80
80
-
81
81
name : Create Release
82
82
if : ${{ startsWith(github.ref, 'refs/tags/') }}
You can’t perform that action at this time.
0 commit comments