-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (35 loc) · 1015 Bytes
/
build.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
name: Package addon
on:
push:
branches:
- master
tags:
- '*'
paths-ignore:
- '.github/**'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout addon
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Run luacheck
uses: BigWigsMods/actions/luacheck@master
with:
args: -q
config: https://raw.githubusercontent.com/BigWigsMods/BigWigs/master/.luacheckrc
- name: Download common locale
if: always()
run: |
mkdir -p Core/Locales
curl -sS https://raw.githubusercontent.com/BigWigsMods/BigWigs/master/Core/Locales/common.enUS.lua > Core/Locales/common.enUS.lua
- name: Update option files
if: always()
uses: BigWigsMods/actions/gen-options@master
- name: Package
uses: BigWigsMods/packager@master
env:
CF_API_KEY: ${{ secrets.CF_API_KEY }}
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}