Skip to content

Commit

Permalink
added back the foundry release action to the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eastcw authored Jun 19, 2024
1 parent e97b786 commit 6ff8395
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
id: sub_manifest_link_version
uses: microsoft/variable-substitution@v1
with:
files: 'src/${{ env.package_type }}.json'
files: "src/${{ env.package_type }}.json"
env:
version: ${{ steps.get_version.outputs.version-without-v }}
url: https://github.com/${{ github.repository }}
Expand Down Expand Up @@ -116,16 +116,16 @@ jobs:
allowUpdates: true
name: ${{ github.event.release.name }}
token: ${{ secrets.GITHUB_TOKEN }}
artifacts: './dist/${{ env.package_type }}.json, ./${{ env.package_type }}.zip'
artifacts: "./dist/${{ env.package_type }}.json, ./${{ env.package_type }}.zip"
body: ${{ github.event.release.body }}
prerelease: ${{ github.event.release.prerelease }}

# Publish this new version to the Foundry VTT Module Listing
# - name: FoundryVTT AutoPublish
# uses: Varriount/[email protected]
# with:
# username: ${{ secrets.FOUNDRY_ADMIN_USER }}
# password: ${{ secrets.FOUNDRY_ADMIN_PW }}
# module-id: ${{ secrets.FOUNDRY_MODULE_ID }}
# manifest-url: https://github.com/${{github.repository}}/releases/download/v${{ steps.get_version.outputs.version-without-v }}/module.json
# manifest-file: src/module.json
- name: FoundryVTT AutoPublish
uses: Varriount/[email protected]
with:
username: ${{ secrets.FOUNDRY_ADMIN_USER }}
password: ${{ secrets.FOUNDRY_ADMIN_PW }}
module-id: ${{ secrets.FOUNDRY_MODULE_ID }}
manifest-url: https://github.com/${{github.repository}}/releases/download/v${{ steps.get_version.outputs.version-without-v }}/module.json
manifest-file: src/module.json

0 comments on commit 6ff8395

Please sign in to comment.