-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Github auto deploy action * change token name * Add package manager and clean CI
- Loading branch information
Showing
2 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
tags: | ||
- '**' | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
env: | ||
CF_API_KEY: ${{ secrets.CF_API_KEY }} | ||
WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }} | ||
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} | ||
GITHUB_OAUTH: ${{ secrets.GIT_TOKEN }} | ||
|
||
steps: | ||
- name: Clone project | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# - name: Install and run Luacheck | ||
# uses: nebularg/actions-luacheck@v1 | ||
# with: | ||
# args: "--no-color -q" | ||
|
||
- name: WoW Packager | ||
uses: BigWigsMods/packager@v2.0.3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package-as: APR | ||
|
||
move-folders: | ||
azeroth-pilot-reloaded/APR-Core: APR_Core | ||
azeroth-pilot-reloaded/APR-BattleForAzeroth: APR_BattleForAzeroth | ||
azeroth-pilot-reloaded/APR-Dragonflight: APR_Dragonflight | ||
azeroth-pilot-reloaded/APR-ExilesReach: APR_ExilesReach | ||
azeroth-pilot-reloaded/APR-Legion: APR_Legion | ||
azeroth-pilot-reloaded/APR-MistsOfPandaria: APR_MistsOfPandaria | ||
azeroth-pilot-reloaded/APR-Shadowlands: APR_Shadowlands | ||
azeroth-pilot-reloaded/APR-TheBurningCrusade: APR_TheBurningCrusade | ||
azeroth-pilot-reloaded/APR-Vanilla: APR_Vanilla | ||
azeroth-pilot-reloaded/APR-WarlordsOfDraenor: APR_WarlordsOfDraenor | ||
azeroth-pilot-reloaded/APR-WrathOfTheLichKing: APR_WrathOfTheLichKing | ||
|