Update release.yml #9
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: Build and Release | |
on: | |
push: | |
tags: | |
- 'v*.*.*' # This triggers the workflow on version tags | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install archive tools | |
run: sudo apt install zip | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.repository.default_branch }} | |
- uses: pnpm/[email protected] | |
with: | |
version: 8.6.1 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '21.x' | |
- name: Install dependencies | |
run: pnpm install | |
working-directory: web | |
- name: Build Svelte project | |
run: pnpm run build | |
working-directory: web | |
- name: Bundle files | |
run: | | |
mkdir -p ./temp/mm_radio | |
mkdir -p ./temp/mm_radio/build/ | |
cp ./{LICENSE,README.md,battery.json,fxmanifest.lua} ./temp/mm_radio | |
cp -r ./{client,server,shared,locales} ./temp/mm_radio | |
cp -r ./build ./temp/mm_radio/build/ | |
cd ./temp && zip -r ../mm_radio.zip ./mm_radio | |
- name: Create Release | |
uses: 'marvinpinto/action-automatic-releases@latest' | |
with: | |
repo_token: '${{ secrets.GITHUB_TOKEN }}' | |
automatic_release_tag: "latest" | |
prerelease: false | |
files: mm_radio.zip |