-
-
Notifications
You must be signed in to change notification settings - Fork 10
51 lines (45 loc) · 1.47 KB
/
ci.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
name: CI
on:
push:
branches:
- master
tags:
- "*"
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install and run Luacheck
uses: nebularg/actions-luacheck@v1
with:
args: "--no-color -q"
- name: Run DBM Checks
uses: DeadlyBossMods/DBM-Actions@master
- name: Strip uncompressed test data
if: startsWith(github.ref, 'refs/tags/r')
shell: bash
run: |
cd "${{ github.workspace }}"
find DBM-Test-* -name \*.lua -not -path '*/Reports/*' -print0 | xargs -0 -n1 sed -i -z 's/--@strip-from-release@.*@end-strip-from-release@/-- Raw test log stripped from release build./'
- name: Create Package
uses: BigWigsMods/packager@master
if: ${{ github.event_name != 'pull_request' }}
with:
args: -n "DBM-Vanilla_SoD-{project-version}{classic}"
env:
CF_API_KEY: ${{ secrets.CF_API_KEY }}
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}
WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }}
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }}
- name: Send Status to Discord
uses: nebularg/actions-discord-webhook@v1
with:
webhook_url: ${{ secrets.DISCORD_WEBHOOK }}
status: ${{ job.status }}
if: ${{ github.event_name != 'pull_request' && failure() }}