Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Commit f9ce52a

Browse files
chore: fix release workflows and re-release (#689)
1 parent 89d1ef3 commit f9ce52a

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

.github/workflows/release-cli.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,8 @@ jobs:
4343
- name: Publish NPM Package
4444
working-directory: cli
4545
run: >
46-
npm publish
47-
--provenance
48-
--access public
49-
--tag ${{ steps.parse_cli_version.outputs.npm_tag }}
46+
npm publish --tag ${{ steps.parse_cli_version.outputs.npm_tag }} --access public
47+
--provenance
5048
env:
5149
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5250
- name: Create Release

.github/workflows/release-sdk-as.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,8 @@ jobs:
4141
- name: Publish NPM Package
4242
working-directory: sdk/assemblyscript/src
4343
run: >
44-
npm publish
45-
--provenance
46-
--access public
47-
--tag ${{ steps.parse_sdk_version.outputs.npm_tag }}
44+
npm publish --tag ${{ steps.parse_sdk_version.outputs.npm_tag }} --access public
45+
--provenance
4846
env:
4947
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
5048
- name: Create Release

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 2025-01-07 - CLI 0.16.4
4+
5+
No changes. Re-released previous version to fix release issue.
6+
7+
## 2025-01-07 - AssemblyScript SDK 0.16.2
8+
9+
No changes. Re-released previous version to fix release issue.
10+
311
## 2025-01-07 - CLI 0.16.3
412

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

0 commit comments

Comments
 (0)