diff --git a/.github/workflows/draft-release.yaml b/.github/workflows/draft-release.yaml index 5ea359a..7763240 100644 --- a/.github/workflows/draft-release.yaml +++ b/.github/workflows/draft-release.yaml @@ -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" \ No newline at end of file + artifacts: "release.zip,system.json" \ No newline at end of file diff --git a/module.json b/system.json similarity index 94% rename from module.json rename to system.json index d2d75da..ae53692 100644 --- a/module.json +++ b/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": {} } } \ No newline at end of file