We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 347fcf5 commit bd3acf1Copy full SHA for bd3acf1
.github/workflows/generate-update-manifest.yml
@@ -15,16 +15,20 @@ jobs:
15
- uses: actions/setup-node@v4
16
with:
17
node-version: '22.x'
18
- cache: 'npm'
19
20
- name: Generate update-manifest.json
21
run: |
22
npx @slimevr/update-manifest-generator@latest
23
+ - uses: actions/upload-artifact@v4
24
+ with:
25
+ name: "update-manifest.json"
26
+ path: ./update-manifest.json
27
+
28
- name: Upload update-manifest.json to release
- uses: softprops/action-gh-release@v1
29
+ uses: softprops/action-gh-release@v2
30
- tag_name: ${{ secrets.RELEASE_ID }}
- files: update-manifest.json
31
+ tag_name: ${{ secrets.UPDATE_MANIFEST_RELEASE_TAG }}
32
+ files: ./update-manifest.json
33
env:
34
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments