-
-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (30 loc) · 712 Bytes
/
Copy pathbuild.yml
File metadata and controls
35 lines (30 loc) · 712 Bytes
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
name: Package addon
on:
push:
branches:
- master
tags:
- '*'
paths-ignore:
- '.github/**'
jobs:
build:
runs-on: ubuntu-latest
concurrency:
group: packager
steps:
- name: Checkout addon
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Run luacheck
uses: BigWigsMods/luacheck@main
with:
args: -q
- name: Package
uses: BigWigsMods/packager@master
env:
CF_API_KEY: ${{ secrets.CF_API_KEY }}
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }}
WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }}
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}