diff --git a/.github/workflows/publish-to-fvtt.yml b/.github/workflows/publish-to-fvtt.yml index 613a210..7c68af6 100644 --- a/.github/workflows/publish-to-fvtt.yml +++ b/.github/workflows/publish-to-fvtt.yml @@ -10,4 +10,4 @@ jobs: uses: JamesIves/fetch-api-data-action@v2 with: endpoint: https://api.foundryvtt.com/_api/packages/release_version/ - configuration: '{ "method": "GET", "headers": { "Authorization": "${{ secrets.FVTT_API_TOKEN }}" } "body": { "id": "pf2e-reactive-token-ring", "dry-run": true, "release": { "version": "${{github.event.release.tag_name}}", "manifest": "https://github.com/${{github.repository}}/releases/${{github.event.release.tag_name}}/download/module.json", "notes": "https://github.com/${{github.repository}}/releases/tag/${{github.event.release.tag_name}}" "compatibility": { "minimum": "12", "verified": "12", "maximum": "" } } } }' + configuration: '{ "method": "GET", "headers": { "Authorization": "${{ secrets.FVTT_API_TOKEN }}" }, "body": { "id": "pf2e-reactive-token-ring", "dry-run": true, "release": { "version": "${{github.event.release.tag_name}}", "manifest": "https://github.com/${{github.repository}}/releases/${{github.event.release.tag_name}}/download/module.json", "notes": "https://github.com/${{github.repository}}/releases/tag/${{github.event.release.tag_name}}", "compatibility": { "minimum": "12", "verified": "12", "maximum": "" } } } }'