v1.9.1 (for MPMB v13.2.0) #3
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: Release Creation | |
on: | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
# Run minify | |
# - uses: actions/[email protected] | |
# with: | |
# node-version: '20' | |
# - run: npm install | |
# - run: npm run minify | |
# Update the GitHub release with the manifest and module archive files. | |
- 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: "./WotC material/all_WotC_*.js" | |
tag: ${{ github.event.release.tag_name }} | |
body: ${{ github.event.release.body }} |