Rename manifest file since I forgot it needs to be named system.json
This commit is contained in:
parent
a48071b29a
commit
4a1747d4e1
2 changed files with 10 additions and 8 deletions
12
.github/workflows/draft-release.yaml
vendored
12
.github/workflows/draft-release.yaml
vendored
|
|
@ -15,9 +15,9 @@ jobs:
|
|||
# Install required packages
|
||||
- run: npm install
|
||||
|
||||
- name: Reading the module.json for the version
|
||||
- name: Reading the system.json for the version
|
||||
id: "version"
|
||||
run: cat module.json | echo version=`jq -r ".version"` >> "$GITHUB_OUTPUT"
|
||||
run: cat system.json | echo version=`jq -r ".version"` >> "$GITHUB_OUTPUT"
|
||||
|
||||
# Check that tag doesn't exist
|
||||
- uses: mukunku/tag-exists-action@v1.5.0
|
||||
|
|
@ -33,13 +33,13 @@ jobs:
|
|||
if: ${{ vars.files_to_release == '' }}
|
||||
run: exit 1
|
||||
|
||||
- name: Move module.json to a temp file
|
||||
- name: Move system.json to a temp file
|
||||
id: manifest-move
|
||||
run: mv module.json module.temp.json
|
||||
run: mv system.json module.temp.json
|
||||
|
||||
- name: Update the download property in the manifest
|
||||
id: manifest-update
|
||||
run: cat module.temp.json | jq -r --tab '.download = "https://github.com/${{ github.repository }}/releases/download/v${{ steps.version.outputs.version }}/release.zip"' > module.json
|
||||
run: cat module.temp.json | jq -r --tab '.download = "https://github.com/${{ github.repository }}/releases/download/v${{ steps.version.outputs.version }}/release.zip"' > system.json
|
||||
|
||||
- name: Create the zip
|
||||
run: zip -r release.zip ${{ vars.files_to_release }}
|
||||
|
|
@ -51,4 +51,4 @@ jobs:
|
|||
commit: ${{ github.ref }}
|
||||
draft: true
|
||||
generateReleaseNotes: true
|
||||
artifacts: "release.zip,module.json"
|
||||
artifacts: "release.zip,system.json"
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
"id": "ripcrypt",
|
||||
"title": "RipCrypt",
|
||||
"description": "",
|
||||
"version": "0.0.0",
|
||||
"version": "0.0.1",
|
||||
"compatibility": {
|
||||
"minimum": 12,
|
||||
"verified": 12,
|
||||
|
|
@ -37,7 +37,9 @@
|
|||
}
|
||||
},
|
||||
"documentTypes": {
|
||||
"Actor": {},
|
||||
"Actor": {
|
||||
"hero": {}
|
||||
},
|
||||
"Item": {}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue