diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1d7e4f8..88642d0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,6 +35,9 @@ jobs: jq --arg NEW_VERSION "$NEW_VERSION" '.version = $NEW_VERSION' module.json > temp.json mv temp.json module.json + - name: Re-Authenticate with GitHub CLI + run: echo ${{ secrets.FINE_GRAINED_PAT }} | gh auth login --with-token + - name: Create GitHub Release run: | gh release create ${{ env.NEW_VERSION }} -t "Release ${{ env.NEW_VERSION }}" -n "Release notes for ${{ env.NEW_VERSION }}" diff --git a/module.json b/module.json index 94b1e19..1ba209a 100644 --- a/module.json +++ b/module.json @@ -1,62 +1,65 @@ { - "id": "ceus", - "name": "Ceus", - "title": "Ceus - Ask For Rolls", - "description": "Want your players to roll in a specific way? Ceus asks players for specific rolls, preventing them from spending time looking for rolls.", - "version": "0.81", - "author": "KaKaRoTo, iotech, Limping Ninja, Rughalt, Calego, VTT Lair, Imper1um", - "authors": [{ - "name": "Imper1um", - "url": "https://github.com/Imper1um" - }], - "esmodules": [ - "./src/ceus_Startup.js" - ], - "scripts": [], - "styles": [ - "/css/ceus.css", - "/css/pf1.css" - ], - "minimumCoreVersion": "11", - "compatibleCoreVersion": "11", - "compatibility": { - "minimum": "11", - "verified": "11" - }, - "languages": [{ - "lang": "en", - "name": "English", - "path": "lang/en.json" - } - ], - "systems": [ - "pf1", - "sf1e" - ], - "relationships": { - "systems": [ - { - "id": "pf1", - "type": "system", - "manifest": "https://gitlab.com/foundryvtt_pathfinder1e/foundryvtt-pathfinder1/-/releases/v0.82.1/downloads/system.json", - "compatibility": { - "verified": "0.82.1" - } - }, - { - "id": "sfrpg", - "type": "system", - "manifest": "https://github.com/foundryvtt-starfinder/foundryvtt-starfinder/blob/v0.24.2/src/system.json", - "compatibility": { - "verified": "0.24.2" - } - } - ] - }, - "socket": true, - "url": "https://github.com/Imper1um/foundry-ceus/", - "manifest": "https://github.com/Imper1um/foundry-ceus/releases/latest/download/module.json", - "download": "https://github.com/Imper1um/foundry-ceus/releases/download/0.81/module.zip", - "changelog": "https://github.com/Imper1um/foundry-ceus/releases", - "bugs": "https://github.com/Imper1um/foundry-ceus/issues" -} \ No newline at end of file + "id": "ceus", + "name": "Ceus", + "title": "Ceus - Ask For Rolls", + "description": "Want your players to roll in a specific way? Ceus asks players for specific rolls, preventing them from spending time looking for rolls.", + "version": "0.84", + "author": "KaKaRoTo, iotech, Limping Ninja, Rughalt, Calego, VTT Lair, Imper1um", + "authors": [ + { + "name": "Imper1um", + "url": "https://github.com/Imper1um" + } + ], + "esmodules": [ + "./src/ceus_Startup.js" + ], + "scripts": [], + "styles": [ + "/css/ceus.css", + "/css/pf1.css" + ], + "minimumCoreVersion": "11", + "compatibleCoreVersion": "11", + "compatibility": { + "minimum": "11", + "verified": "11" + }, + "languages": [ + { + "lang": "en", + "name": "English", + "path": "lang/en.json" + } + ], + "systems": [ + "pf1", + "sf1e" + ], + "relationships": { + "systems": [ + { + "id": "pf1", + "type": "system", + "manifest": "https://gitlab.com/foundryvtt_pathfinder1e/foundryvtt-pathfinder1/-/releases/v0.82.1/downloads/system.json", + "compatibility": { + "verified": "0.82.1" + } + }, + { + "id": "sfrpg", + "type": "system", + "manifest": "https://github.com/foundryvtt-starfinder/foundryvtt-starfinder/blob/v0.24.2/src/system.json", + "compatibility": { + "verified": "0.24.2" + } + } + ] + }, + "socket": true, + "url": "https://github.com/Imper1um/foundry-ceus/", + "manifest": "https://github.com/Imper1um/foundry-ceus/releases/latest/download/module.json", + "download": "https://github.com/Imper1um/foundry-ceus/releases/download/0.84/module.zip", + "changelog": "https://github.com/Imper1um/foundry-ceus/releases", + "bugs": "https://github.com/Imper1um/foundry-ceus/issues" +}