Skip to content

Commit 7f8eab3

Browse files
committed
[1.15.6] Update
Apply Packager Integrate Feature from 4.4.2.1 Integrate Locales Add Migration
1 parent bc3f6bd commit 7f8eab3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+2730
-13195
lines changed

.github/workflows/release.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Package and release
2+
3+
on:
4+
push:
5+
# Package only when release version pushed
6+
tags:
7+
- '**'
8+
- '!**[a-z]+'
9+
10+
jobs:
11+
release:
12+
# runs-on: ubuntu-latest
13+
# ubuntu-24.04 needs svn installed
14+
runs-on: ubuntu-22.04
15+
16+
env:
17+
CF_API_KEY: ${{ secrets.CF_API_KEY }}
18+
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}
19+
20+
steps:
21+
- name: Clone project
22+
uses: actions/checkout@v4
23+
with:
24+
fetch-depth: 0 # gets git history for changelogs
25+
- name: WoW Packager
26+
uses: BigWigsMods/[email protected]
27+
with:
28+
args: -g classic -p 357612 -n "{package-name}-{project-version}"

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*.ini
33
*.psd
44
*.zip
5+
.vscode/*

.pkgmeta

+25-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
package-as: SavedClassic
22
enable-nolib-creation: no
3-
4-
move-folders:
5-
SavedClassic: SavedClassic
3+
externals:
4+
Libs/AceAddon-3.0:
5+
url: https://repos.wowace.com/wow/ace3/trunk/AceAddon-3.0
6+
tag: latest
7+
Libs/AceConfig-3.0:
8+
url: https://repos.wowace.com/wow/ace3/trunk/AceConfig-3.0
9+
tag: latest
10+
Libs/AceDB-3.0:
11+
url: https://repos.wowace.com/wow/ace3/trunk/AceDB-3.0
12+
tag: latest
13+
Libs/AceLocale-3.0:
14+
url: https://repos.wowace.com/wow/ace3/trunk/AceLocale-3.0
15+
tag: latest
16+
Libs/AceEvent-3.0:
17+
url: https://repos.wowace.com/wow/ace3/trunk/AceEvent-3.0
18+
tag: latest
19+
Libs/AceGUI-3.0:
20+
url: https://repos.wowace.com/wow/ace3/trunk/AceGUI-3.0
21+
tag: latest
22+
Libs/CallbackHandler-1.0:
23+
url: https://repos.wowace.com/wow/callbackhandler/trunk/CallbackHandler-1.0
24+
tag: latest
25+
Libs/LibStub:
26+
url: https://repos.wowace.com/wow/libstub/trunk
27+
tag: latest

0 commit comments

Comments
 (0)