diff --git a/.github/workflows/ark.release.yaml b/.github/workflows/ark.release.yaml index c504003..bb488ac 100755 --- a/.github/workflows/ark.release.yaml +++ b/.github/workflows/ark.release.yaml @@ -114,8 +114,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ github.event.release.upload_url }} - asset_path: pkg/client-sdk/build/client-sdk.wasm - asset_name: client-sdk.wasm + asset_path: pkg/client-sdk/build/ark-sdk.wasm + asset_name: ark-sdk.wasm asset_content_type: application/wasm # Docker diff --git a/pkg/client-sdk/Makefile b/pkg/client-sdk/Makefile index 000d147..9f3db96 100644 --- a/pkg/client-sdk/Makefile +++ b/pkg/client-sdk/Makefile @@ -31,4 +31,4 @@ GO_VERSION := $(shell go version | cut -d' ' -f3) build-wasm: @mkdir -p $(BUILD_DIR) @echo "Version: $(VERSION)" - @GOOS=js GOARCH=wasm GO111MODULE=on go build -ldflags="-X 'main.Version=$(VERSION)'" -o $(BUILD_DIR)/client-sdk.wasm $(WASM_DIR)/main.go + @GOOS=js GOARCH=wasm GO111MODULE=on go build -ldflags="-X 'main.Version=$(VERSION)'" -o $(BUILD_DIR)/ark-sdk.wasm $(WASM_DIR)/main.go diff --git a/pkg/client-sdk/example/covenant/wasm/index.html b/pkg/client-sdk/example/covenant/wasm/index.html index 2170f4e..6bc1a9f 100644 --- a/pkg/client-sdk/example/covenant/wasm/index.html +++ b/pkg/client-sdk/example/covenant/wasm/index.html @@ -6,7 +6,7 @@