Skip to content

Commit bd3acf1

Browse files
ci: guess no node cache? (#1498)
1 parent 347fcf5 commit bd3acf1

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/generate-update-manifest.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,20 @@ jobs:
1515
- uses: actions/setup-node@v4
1616
with:
1717
node-version: '22.x'
18-
cache: 'npm'
1918

2019
- name: Generate update-manifest.json
2120
run: |
2221
npx @slimevr/update-manifest-generator@latest
2322
23+
- uses: actions/upload-artifact@v4
24+
with:
25+
name: "update-manifest.json"
26+
path: ./update-manifest.json
27+
2428
- name: Upload update-manifest.json to release
25-
uses: softprops/action-gh-release@v1
29+
uses: softprops/action-gh-release@v2
2630
with:
27-
tag_name: ${{ secrets.RELEASE_ID }}
28-
files: update-manifest.json
31+
tag_name: ${{ secrets.UPDATE_MANIFEST_RELEASE_TAG }}
32+
files: ./update-manifest.json
2933
env:
3034
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)