@shakerquiz/utilities 4.0.30 → 4.0.32

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.
@@ -1,11 +1,11 @@
1
- name: Publish aquamarine
1
+ name: Update package (aquamarine)
2
2
 
3
3
  on:
4
- workflow_dispatch:
5
4
  pull_request:
6
5
  types: [ closed ]
7
6
  branches:
8
7
  - aquamarine
8
+ workflow_dispatch:
9
9
 
10
10
  permissions:
11
11
  id-token: write
@@ -15,16 +15,18 @@ jobs:
15
15
  publish:
16
16
  runs-on: ubuntu-latest
17
17
  if: |
18
- github.event_name == 'workflow_dispatch' ||
19
- github.event.pull_request.merged == true
18
+ github.event.pull_request.merged == true ||
19
+ github.event_name == 'workflow_dispatch'
20
20
  steps:
21
- - uses: actions/checkout@v5
21
+ - uses: actions/checkout@v6
22
22
  with:
23
23
  fetch-depth: 0
24
+ ref: aquamarine
24
25
  - uses: actions/setup-node@v6
25
26
  with:
26
27
  node-version: 24
27
28
  - uses: oven-sh/setup-bun@v2
29
+ - run: npm install -g npm@latest
28
30
  - run: git config user.name "github-actions[bot]"
29
31
  - run: git config user.email "github-actions[bot]@users.noreply.github.com"
30
32
  - run: npm version patch
@@ -32,15 +34,18 @@ jobs:
32
34
  - run: npm publish --tag aquamarine
33
35
  - run: git commit -am "Commit autogenerated output" || true
34
36
  - run: git push --follow-tags
35
- update:
37
+ updates:
36
38
  needs: publish
37
39
  runs-on: ubuntu-latest
40
+ strategy:
41
+ fail-fast: false
42
+ matrix:
43
+ repo: [ url, contracts ]
38
44
  steps:
39
- - name: Update ${{ github.repository_owner }}/url
45
+ - name: Update and Publish ${{ github.repository_owner }}/${{ matrix.repo }}
40
46
  env:
41
47
  GH_TOKEN: ${{ secrets.GH_TOKEN }}
42
48
  run: |
43
49
  gh workflow run publish.yml \
44
- -R ${{ github.repository_owner }}/url \
45
- -f pr=false
46
- -f utilities=true
50
+ -R "${{ github.repository_owner }}/${{ matrix.repo }}" \
51
+ -f pr=false -f utilities=true
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@shakerquiz/utilities",
4
- "version": "4.0.30",
4
+ "version": "4.0.32",
5
5
  "author": "yurkimus <yurkimus@gmail.com>",
6
6
  "license": "ISC",
7
7
  "repository": {