-
-
Notifications
You must be signed in to change notification settings - Fork 5
72 lines (62 loc) · 2.01 KB
/
release.yml
File metadata and controls
72 lines (62 loc) · 2.01 KB
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
63
64
65
66
67
68
69
70
71
72
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: Format code with Prettier
run: |
npm install -g prettier
npx prettier --write "**/*.{js,json,md}"
- name: Format Lua with StyLua
uses: JohnnyMorganz/stylua-action@v3
continue-on-error: true
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: latest
args: .
- name: Bump manifest version
run: node .github/actions/bump-manifest-version.js
env:
TGT_RELEASE_VERSION: ${{ github.ref_name }}
- name: Push manifest change
uses: EndBug/add-and-commit@v8
with:
add: fxmanifest.lua
push: true
author_name: Manifest Bumper
author_email: 41898282+github-actions[bot]@users.noreply.github.com
message: 'chore: bump manifest version to ${{ github.ref_name }}'
- name: Update tag ref
uses: EndBug/latest-tag@latest
with:
tag-name: ${{ github.ref_name }}
- name: Bundle files
run: |
ls
mkdir -p ./temp/mad_goon
cp LICENSE.md README.md fxmanifest.lua ./temp/mad_goon/ || true
cp -r ./{bridge,client,server,config,data,modules,locales,docs} ./temp/mad_goon
cd ./temp && zip -r ../mad_goon.zip ./mad_goon
- name: Create Release
uses: 'marvinpinto/action-automatic-releases@v1.2.1'
id: auto_release
with:
repo_token: '${{ secrets.GITHUB_TOKEN }}'
title: ${{ github.ref_name }}
prerelease: false
files: mad_goon.zip
env:
CI: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}