-
Notifications
You must be signed in to change notification settings - Fork 112
65 lines (55 loc) · 1.81 KB
/
Parser_Objective.yml
File metadata and controls
65 lines (55 loc) · 1.81 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
name: Parser - with objective in retail
# Controls when the action will run.
on:
# Triggers the workflow on each push event
# push:
# paths:
# - '.contrib/Parser/**'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- name: Database Parser for Retail with objective
timeout-minutes: 5
run: |
cd .contrib/Parser
"Parser.exe" baseconfig=.config/retail/retail.config config=.config/retail/objectives.config
shell: cmd
- name: Database Parser for Classic Era
timeout-minutes: 5
run: |
cd .contrib/Parser
"Parser.exe" auto config=".config/classic/01 - Classic Era.config"
shell: cmd
- name: Database Parser for Season of Discovery
timeout-minutes: 5
run: |
cd .contrib/Parser
"Parser.exe" auto config=".config/classic/01 - Classic SOD.config"
shell: cmd
- name: Database Parser for The Burning Crusade
timeout-minutes: 5
run: |
cd .contrib/Parser
"Parser.exe" auto config=".config/classic/02 - TBC.config"
shell: cmd
- name: Database Parser for Wrath of the Lich King
timeout-minutes: 5
run: |
cd .contrib/Parser
"Parser.exe" auto config=".config/classic/03 - Wrath.config"
shell: cmd
- name: Database Parser for Cataclysm
timeout-minutes: 5
run: |
cd .contrib/Parser
"Parser.exe" auto config=".config/classic/04 - Cataclysm.config"
shell: cmd
- uses: actions/upload-artifact@v7
with:
name: db # Artifact name
path: db/ # File path to upload
retention-days: 7