-
Notifications
You must be signed in to change notification settings - Fork 42
56 lines (46 loc) · 1.38 KB
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
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'
cache: 'pnpm'
cache-dependency-path: 'web/pnpm-lock.yaml'
- 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 }}'
title: ${{ github.ref }}
prerelease: false
files: mm_radio.zip