-
-
Notifications
You must be signed in to change notification settings - Fork 31
41 lines (33 loc) · 953 Bytes
/
package.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
name: Package and release
on:
push:
tags:
- '**'
jobs:
release:
runs-on: ubuntu-latest
env:
CF_API_KEY: ${{ secrets.CF_API_KEY }}
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }}
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Clone project
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Package and release Cata
uses: BigWigsMods/packager@master
with:
args: "-o -u -S -m .pkgmeta -g cata"
- name: Package and release Retail
uses: BigWigsMods/packager@master
with:
args: "-o -u -S -m .pkgmeta -g retail"
- name: Package and release Era
uses: BigWigsMods/packager@master
with:
args: "-o -u -S -m .pkgmeta -g classic"
- name: Package and release Wrath
uses: BigWigsMods/packager@master
with:
args: "-o -u -S -m .pkgmeta -g wrath"