Skip to content

Commit

Permalink
Add Github auto deploy action (#39)
Browse files Browse the repository at this point in the history
* Add Github auto deploy action

* change token name

* Add package manager and clean CI
  • Loading branch information
Neogeekmo authored Nov 20, 2022
1 parent 5cf7592 commit e00063a
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/CI.yml
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

15 changes: 15 additions & 0 deletions .pkgmeta
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

0 comments on commit e00063a

Please sign in to comment.