Skip to content

Commit

Permalink
chore: fix release workflows and re-release (#689)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjohnsonpint authored Jan 8, 2025
1 parent 89d1ef3 commit f9ce52a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/release-cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,8 @@ jobs:
- name: Publish NPM Package
working-directory: cli
run: >
npm publish
--provenance
--access public
--tag ${{ steps.parse_cli_version.outputs.npm_tag }}
npm publish --tag ${{ steps.parse_cli_version.outputs.npm_tag }} --access public
--provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create Release
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/release-sdk-as.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,8 @@ jobs:
- name: Publish NPM Package
working-directory: sdk/assemblyscript/src
run: >
npm publish
--provenance
--access public
--tag ${{ steps.parse_sdk_version.outputs.npm_tag }}
npm publish --tag ${{ steps.parse_sdk_version.outputs.npm_tag }} --access public
--provenance
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Create Release
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 2025-01-07 - CLI 0.16.4

No changes. Re-released previous version to fix release issue.

## 2025-01-07 - AssemblyScript SDK 0.16.2

No changes. Re-released previous version to fix release issue.

## 2025-01-07 - CLI 0.16.3

- chore: use `toolchain` to set Go version [#684](https://github.com/hypermodeinc/modus/pull/684)
Expand Down

0 comments on commit f9ce52a

Please sign in to comment.