Skip to content

Commit ec6a46f

Browse files
committed
Enable CI
1 parent fed1629 commit ec6a46f

File tree

3 files changed

+72
-0
lines changed

3 files changed

+72
-0
lines changed

.github/workflows/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Main
2+
3+
on:
4+
push:
5+
branches: '**'
6+
tags: '*'
7+
8+
concurrency:
9+
group: ${{ github.ref }}
10+
cancel-in-progress: true
11+
12+
jobs:
13+
run:
14+
uses: adya/pack-skse-mod/.github/workflows/pack.yml@main
15+
with:
16+
AE_353_BRANCH: master-1.6.353
17+
FOMOD_INCLUDE_PDB: true
18+
FOMOD_MOD_NAME: "Equipment Toggle"
19+
FOMOD_MOD_AUTHOR: "powerofthree"
20+
FOMOD_MOD_NEXUS_ID: "68540"
21+
FOMOD_REQUIRED_INSTALLATION_DIR: "Skyrim/Data"
22+
PUBLISH_ARCHIVE_TYPE: '7z'
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"armors": [
3+
{
4+
"hotKey": {
5+
"key": 208,
6+
"type": 0
7+
},
8+
"hide": {
9+
"whenEquipped": 0,
10+
"atHome": 0,
11+
"duringDialogue": 0
12+
},
13+
"unhide": {
14+
"duringCombat": 0,
15+
"onWeaponDraw": 0
16+
},
17+
"slots": [
18+
30,
19+
31,
20+
41,
21+
43
22+
]
23+
}
24+
],
25+
"weapons": [
26+
{
27+
"hotKey": {
28+
"key": 200,
29+
"type": 0
30+
},
31+
"hide": {
32+
"whenEquipped": 0,
33+
"atHome": 0,
34+
"duringDialogue": -1
35+
},
36+
"unhide": {
37+
"duringCombat": -1,
38+
"onWeaponDraw": 0
39+
},
40+
"slots": [
41+
38,
42+
41
43+
]
44+
}
45+
]
46+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything in this directory
2+
*
3+
# Except this file
4+
!.gitignore

0 commit comments

Comments
 (0)