newspack-scripts 5.9.2 → 5.9.3

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.
@@ -37,11 +37,8 @@ jobs:
37
37
  - name: Install dependencies
38
38
  run: npm ci --legacy-peer-deps
39
39
 
40
- - name: Download release artifacts
41
- uses: actions/download-artifact@v4
42
- with:
43
- name: release-artifacts
44
- path: release/
40
+ - name: Build release artifacts
41
+ run: npm run build && npm run release:archive
45
42
 
46
43
  - name: Verify release artifacts
47
44
  run: |
@@ -3,6 +3,8 @@ name: Release
3
3
  on:
4
4
  workflow_call:
5
5
  secrets:
6
+ GIT_COMMITTER_TOKEN:
7
+ required: true
6
8
  NPM_TOKEN:
7
9
  required: false
8
10
 
@@ -19,7 +21,7 @@ jobs:
19
21
  uses: actions/checkout@v4
20
22
  with:
21
23
  fetch-depth: 0
22
- persist-credentials: false
24
+ token: ${{ secrets.GIT_COMMITTER_TOKEN }}
23
25
 
24
26
  - name: Setup Node.js
25
27
  uses: actions/setup-node@v4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "newspack-scripts",
3
- "version": "5.9.2",
3
+ "version": "5.9.3",
4
4
  "description": "",
5
5
  "bin": {
6
6
  "newspack-scripts": "./bin/newspack-scripts.js"