0.0.12 #17
This file contains 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
name: Module Builder | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' # Specify the Node.js version you need | |
- name: Zip Files | |
working-directory: ./ | |
run: zip -r ./module.zip ./* | |
- name: Get Version | |
shell: bash | |
id: get-version | |
run: echo "version=$(node ./.github/workflows/get-version.js)" >> $GITHUB_OUTPUT | |
- name: Create Release | |
id: create-release | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
name: Release ${{ steps.get-version.outputs.version }} | |
draft: false | |
prerelease: false | |
token: ${{ secrets.GITHUB_TOKEN }} | |
artifacts: './module.zip, ./module.json' | |
tag: ${{ steps.get-version.outputs.version }} | |
- name: Foundry Release | |
id: foundry-release | |
run: node ./update-foundry-package.js | |
env: | |
FOUNDRY_API_TOKEN: '${{ secrets.FOUNDRY_API_TOKEN }}' | |
PACKAGE_ID: 'gambits-premades' # Add your package ID here | |
PACKAGE_VERSION: '${{ steps.get-version.outputs.version }}' # Add your package version here | |
MANIFEST_URL: 'https://github.com/gambit07/gambits-premades/releases/latest/download/module.json' # Add your manifest URL here | |
RELEASE_NOTES_URL: 'https://github.com/gambit07/gambits-premades/releases/latest/download/gambits-premades.zip' # Add your release notes URL here | |
FOUNDRY_MIN_VERSION: '11' # Add the minimum Foundry VTT version | |
FOUNDRY_VERIFIED_VERSION: '11' # Add the verified Foundry VTT version | |
FOUNDRY_MAX_VERSION: '11' # Add the maximum Foundry VTT version, if applicable |