55 lines
2.0 KiB
YAML
55 lines
2.0 KiB
YAML
name: Release Creation
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v3
|
|
# get part of the tag after the `v`
|
|
- name: Extract tag version number
|
|
id: get_version
|
|
uses: battila7/get-version-action@v2
|
|
|
|
# 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: "system.json"
|
|
env:
|
|
version: ${{steps.get_version.outputs.version-without-v}}
|
|
url: https://github.com/${{github.repository}}
|
|
manifest: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/system.json
|
|
download: https://github.com/${{github.repository}}/releases/download/${{github.event.release.tag_name}}/system.zip
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
|
|
# Pull YAML to LDB packs
|
|
- name: Build Packs
|
|
run: npm run pullYAMLtoLDB
|
|
|
|
# Create a zip file with all files required by the module to add to the release
|
|
- run: zip -r ./system.zip system.json template.json asset/ css/ lang/ module/ templates/ packs/
|
|
|
|
# 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 }}
|
|
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 }}
|
|
|