-
-
Notifications
You must be signed in to change notification settings - Fork 199
54 lines (45 loc) · 1.44 KB
/
pre-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
name: Pre-Release
on:
workflow_dispatch:
inputs:
tag:
description: 'Version tag'
required: true
jobs:
create-release:
name: Build and Create Tagged Pre 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.ref }}
- name: Install dependencies
run: pnpm i
- name: Run build
run: pnpm build
- name: Bundle files
run: |
mkdir -p ./temp/oxmysql
mkdir -p ./temp/oxmysql/web/
mkdir -p ./temp/oxmysql/lib/
cp ./{LICENSE,README.md,fxmanifest.lua,ui.lua} ./temp/oxmysql
cp ./lib/MySQL.lua ./temp/oxmysql/lib
cp -r ./dist ./temp/oxmysql
cp -r ./web/build ./temp/oxmysql/web/
cd ./temp && zip -r ../oxmysql.zip ./oxmysql
- name: Create Release
uses: 'marvinpinto/[email protected]'
id: auto_release
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
title: 'Experimental - ${{ github.event.inputs.tag }} (FOR TESTING PURPOSE)'
prerelease: true
automatic_release_tag: '${{ github.event.inputs.tag }}'
files: oxmysql-${{ github.event.inputs.tag }}.zip
env:
CI: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}