Skip to content

Commit

Permalink
release 0.20.2-rc.5
Browse files Browse the repository at this point in the history
  • Loading branch information
lastmjs committed Feb 8, 2024
1 parent a49c38d commit 64e391e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
5 changes: 3 additions & 2 deletions publish-github-action.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 64e391e

Please sign in to comment.