Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cr7258 committed Jun 29, 2024
1 parent dec2692 commit 703bf01
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-and-push-wasm-go-plugin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,12 @@ jobs:
while [[ "${RETRIES}" -lt "${MAX_RETRIES}" ]]; do
IMAGE="${{ env.IMAGE_REGISTRY_SERVICE }}/${{ env.IMAGE_REPOSITORY }}/wasm-go-${PLUGIN}:${PLUGIN_VERSION}"
PLUGIN_DIR="./extensions/${PLUGIN}"
GOPROXY="https://proxy.golang.org,direct" PLUGIN_NAME="${PLUGIN}" make build
GOPROXY="https://proxy.golang.org,direct" PLUGIN_NAME="${PLUGIN}" make build EXTRA_TAGS=proxy_wasm_version_0_2_100
if [[ $? -eq 0 ]]; then
tar czvf "${PLUGIN_DIR}/plugin.tar.gz" "${PLUGIN_DIR}/plugin.wasm"
PUSH_FILES=("${PLUGIN_DIR}/plugin.tar.gz:application/vnd.oci.image.layer.v1.tar+gzip")
oras push "${IMAGE}" "${PUSH_FILES[@]}"
break
else
Expand Down

0 comments on commit 703bf01

Please sign in to comment.