@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.
@@ -12,7 +12,7 @@
12
12
  "name": "ecosystem",
13
13
  "source": "./",
14
14
  "description": "Fill this out",
15
- "version": "0.2.0",
15
+ "version": "0.2.1",
16
16
  "author": {
17
17
  "name": "Onlooker Community"
18
18
  },
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ecosystem",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "TODO fill this out",
5
5
  "author": {
6
6
  "name": "Onlooker Community",
@@ -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
- NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
42
- PATHS_RELEASED: ${{ steps.release.outputs.paths_released }}
51
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
43
52
  run: |
44
- printf '%s\n' "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" >> "${HOME}/.npmrc"
45
- npm install
46
- npm publish --access public
53
+ npm ci
54
+ npm publish --access public
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "0.2.0"
2
+ ".": "0.2.1"
3
3
  }
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onlooker-community/ecosystem",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Agents, skills, hooks, commands, rules, and MCP configurations that power [Onlooker](https://onlooker.dev)",
5
5
  "author": {
6
6
  "name": "Onlooker Community",