@onlooker-community/ecosystem 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -30,17 +30,25 @@ jobs:
|
|
|
30
30
|
# scoped to this repo.
|
|
31
31
|
token: ${{ secrets.RELEASE_PLEASE_PAT }}
|
|
32
32
|
|
|
33
|
+
# release-please-action does not check out the repo; npm publish needs the
|
|
34
|
+
# tagged release tree (package.json, install.sh, hooks, etc.).
|
|
35
|
+
- name: Checkout release tag
|
|
36
|
+
if: ${{ steps.release.outputs.releases_created == 'true' }}
|
|
37
|
+
uses: actions/checkout@v4
|
|
38
|
+
with:
|
|
39
|
+
ref: ${{ steps.release.outputs.tag_name }}
|
|
40
|
+
|
|
33
41
|
- name: Setup Node
|
|
42
|
+
if: ${{ steps.release.outputs.releases_created == 'true' }}
|
|
34
43
|
uses: actions/setup-node@v6
|
|
35
44
|
with:
|
|
36
45
|
node-version: '22'
|
|
46
|
+
registry-url: 'https://registry.npmjs.org'
|
|
37
47
|
|
|
38
48
|
- name: Publish to npm
|
|
39
49
|
if: ${{ steps.release.outputs.releases_created == 'true' }}
|
|
40
50
|
env:
|
|
41
|
-
|
|
42
|
-
PATHS_RELEASED: ${{ steps.release.outputs.paths_released }}
|
|
51
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
43
52
|
run: |
|
|
44
|
-
|
|
45
|
-
npm
|
|
46
|
-
npm publish --access public
|
|
53
|
+
npm ci
|
|
54
|
+
npm publish --access public
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.1](https://github.com/onlooker-community/ecosystem/compare/v0.2.0...v0.2.1) (2026-05-21)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **ci:** checkout release tag before npm publish :relieved: ([bc7bbdc](https://github.com/onlooker-community/ecosystem/commit/bc7bbdc7a886a55ba8f04fe09bfa60043648c766))
|
|
9
|
+
|
|
3
10
|
## [0.2.0](https://github.com/onlooker-community/ecosystem/compare/v0.1.0...v0.2.0) (2026-05-21)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED