feat: prepare 11.4.0 #27
Workflow file for this run
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: Create files for GitHub Release | |
env: | |
project_url: 'https://github.com/${{ github.repository }}' | |
latest_manifest_url: 'https://github.com/${{ github.repository }}/releases/latest/download/system.json' | |
release_url: 'https://github.com/${{ github.repository }}/releases/download/${{ github.ref_name }}/system.zip' | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Build assets [1/2] - yarn install | |
run: yarn install | |
- name: Build assets [2/2] - yarn build | |
run: NODE_ENV=production yarn run build | |
- name: Pack compendiums | |
run: yarn run pack-packs | |
- name: Modify manifest with release-specific values | |
id: sub_manifest_link_version | |
uses: cschleiden/replace-tokens@v1 | |
with: | |
files: 'system.json' | |
env: | |
VERSION: ${{ github.ref_name }} | |
URL: ${{ env.project_url }} | |
MANIFEST: ${{ env.latest_manifest_url }} | |
DOWNLOAD: ${{ env.release_url }} | |
- name: Create archive | |
run: | | |
zip \ | |
--recurse-paths \ | |
./system.zip \ | |
system.json \ | |
template.json \ | |
README.md \ | |
CHANGELOG.md \ | |
LICENSE \ | |
assets/ \ | |
fonts/ \ | |
images/ \ | |
lang/ \ | |
packs/ \ | |
templates/ | |
- name: Update release with files | |
id: create_version_release | |
uses: ncipollo/release-action@v1 | |
with: | |
allowUpdates: true | |
name: ${{ github.event.release.name }} | |
draft: ${{ github.event.release.unpublished }} | |
prerelease: ${{ github.event.release.prerelease }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
artifacts: './system.json, ./system.zip' | |
tag: ${{ github.event.release.tag_name }} | |
body: ${{ github.event.release.body }} | |
- name: Publish the package | |
id: publish | |
uses: djlechuck/foundryvtt-publish-package-action@v1 | |
with: | |
token: ${{ secrets.FOUNDRYVTT_RELEASE_TOKEN }} | |
manifest: 'https://github.com/${{ github.repository }}/releases/download/${{ github.ref_name }}/system.json' |