From 64e391eedef3f35cb960f1ea441d407f7213fc96 Mon Sep 17 00:00:00 2001 From: Jordan Last Date: Wed, 7 Feb 2024 18:28:42 -0600 Subject: [PATCH] release 0.20.2-rc.5 --- .github/workflows/test.yml | 1 + package-lock.json | 4 ++-- package.json | 2 +- publish-github-action.sh | 5 +++-- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ddb144de5a..6e42753dc5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,6 +30,7 @@ jobs: runs-on: ubuntu-latest env: GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }} # All commits must be verified + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} outputs: # These outputs are used to pass information along to the next job should_run_tests: ${{ steps.should_run_tests.outputs.should_run_tests }} # We only want the next job to run the tests once we have finished deploying to npm and GitHub diff --git a/package-lock.json b/package-lock.json index c5f77b7fa0..87fec1d04a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "azle", - "version": "0.20.2-rc.4", + "version": "0.20.2-rc.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "azle", - "version": "0.20.2-rc.4", + "version": "0.20.2-rc.5", "license": "MIT", "dependencies": { "@dfinity/candid": "github:demergent-labs/candid#minimum_viable", diff --git a/package.json b/package.json index 0045e34ff9..d01777eacd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "azle", - "version": "0.20.2-rc.4", + "version": "0.20.2-rc.5", "rust_version": "1.73.0", "dfx_version": "0.16.1", "description": "TypeScript and JavaScript CDK for the Internet Computer", diff --git a/publish-github-action.sh b/publish-github-action.sh index 6f3477c1d9..f8dc600b39 100755 --- a/publish-github-action.sh +++ b/publish-github-action.sh @@ -54,10 +54,11 @@ cd examples/hello_world npm install npm link azle AZLE_USE_DOCKERFILE=true dfx deploy +gzip -9 ".azle/azle_${VERSION}_image" if [[ "$VERSION" == *"-rc."* ]]; then - gh release create "$VERSION" "examples/hello_world/.azle/azle_${VERSION}_image" -t "$VERSION" --prerelease + gh release create "$VERSION" ".azle/azle_${VERSION}_image.gz" -t "$VERSION" --prerelease else - gh release create "$VERSION" "examples/hello_world/.azle/azle_${VERSION}_image" -t "$VERSION" + gh release create "$VERSION" ".azle/azle_${VERSION}_image.gz" -t "$VERSION" fi