3.0.1 #43
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # From https://github.com/League-of-Foundry-Developers/FoundryVTT-Module-Template/blob/master/.github/workflows/main.yml | |
| name: Release Creation | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: "npm" | |
| - name: Extract version from tag without the v | |
| id: get-version | |
| run: echo "v=${GITHUB_REF_NAME#v}" >> "$GITHUB_OUTPUT" | |
| # Substitute the Manifest and Download URLs in the `module.json`. | |
| - name: Substitute Manifest and Download Links For Versioned Ones | |
| id: sub_manifest_link_version | |
| uses: microsoft/variable-substitution@v1 | |
| with: | |
| files: 'module.json' | |
| env: | |
| version: ${{github.event.release.tag_name}} | |
| url: https://github.com/${{github.repository}} | |
| manifest: https://github.com/${{github.repository}}/releases/latest/download/module.json | |
| download: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/module.zip | |
| - name: Install packages | |
| run: npm ci | |
| - name: Build distribution | |
| run: npm run build | |
| # Create a zip file with all files required by the module to add to the release. | |
| - name: Bundle into ZIP file | |
| run: zip -r ./module.zip module.json assets/ dist/ lang/ packs/ LICENSE | |
| # Create a release for this specific version. | |
| - name: Update Release with Files | |
| id: create_version_release | |
| uses: ncipollo/release-action@v1 | |
| with: | |
| allowUpdates: true # Set this to false if you want to prevent updating existing releases. | |
| name: ${{ github.event.release.name }} | |
| tag: ${{ github.event.release.tag_name }} | |
| body: ${{ github.event.release.body }} | |
| artifacts: "./module.json, ./module.zip" | |
| omitDraftDuringUpdate: true | |
| omitPrereleaseDuringUpdate: true |