enhancedcombathub-dragonbane 0.0.1.1 ALPHA #2
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: Publish release | |
on: | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm install | |
- name: Extract tag version number | |
id: get_version | |
uses: battila7/get-version-action@v2 | |
- name: Run Vite build | |
env: | |
MODULE_VERSION: ${{steps.get_version.outputs.version-without-v}} | |
GH_PROJECT: ${{github.repository}} | |
GH_TAG: ${{github.event.release.tag_name}} | |
run: npm run build | |
- name: Create zip archive | |
working-directory: dist | |
run: zip -r ./module.zip README.md LICENSE module.json style.css scripts/ templates/ languages/ | |
- 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 }} | |
draft: ${{ github.event.release.unpublished }} | |
prerelease: ${{ github.event.release.prerelease }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
artifacts: "./dist/module.json, ./dist/module.zip" | |
tag: ${{ github.event.release.tag_name }} | |
body: ${{ github.event.release.body }} |