This repository has been archived by the owner on Jan 7, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 16
62 lines (52 loc) · 1.86 KB
/
build-prod.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
57
58
59
60
61
62
name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
create-release:
name: Build and Create Tagged Release
runs-on: ubuntu-latest
steps:
- name: Install archive tools
run: sudo apt install zip
- name: Checkout source code
uses: actions/checkout@v2
with:
fetch-depth: 0
ref: ${{ github.event.repository.default_branch }}
- name: Setup bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: cd web && bun install
- name: Run build
run: bun run build
working-directory: web
env:
CI: false
- name: Update tag ref
uses: EndBug/latest-tag@latest
with:
ref: ${{ github.ref_name }}
- name: Bundle files
run: |
ls
mkdir -p ./temp/minimal-hud
mkdir -p ./temp/minimal-hud/web/
cp ./{LICENSE,README.md,fxmanifest.lua,require.lua} ./temp/minimal-hud
cp -r ./{client,config,data,modules,server,stream} ./temp/minimal-hud
cp -r ./dist ./temp/minimal-hud/
cd ./temp && zip -r ../minimal-hud.zip ./minimal-hud
- name: Create Release
uses: "marvinpinto/[email protected]"
id: auto_release
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
title: ${{ env.RELEASE_VERSION }}
prerelease: false
files: minimal-hud.zip
env:
CI: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}