Update to latest packager example

This commit is contained in:
Parnic
2022-09-22 11:01:21 -05:00
parent 6c506579be
commit a32b75bf44

View File

@ -32,25 +32,27 @@ jobs:
# we first have to clone the AddOn project, this is a required step # we first have to clone the AddOn project, this is a required step
- name: Clone project - name: Clone project
uses: actions/checkout@v1 uses: actions/checkout@v3
with:
fetch-depth: 0 # gets git history for changelogs
# once cloned, we just run the GitHub Action for the packager project # once cloned, we just run the GitHub Action for the packager project
- name: Package and release - name: Package and release
uses: BigWigsMods/packager@master uses: BigWigsMods/packager@v2
# another example where we supply additional arguments, this example is specifically to release # another example where we supply additional arguments, this example is specifically to release
# for the Classic version of the game # for the Classic version of the game
- name: Package and release for Classic - name: Package and release for Classic
uses: BigWigsMods/packager@master uses: BigWigsMods/packager@v2
with: with:
args: -g classic -w 0 args: -g classic -w 0
- name: Package and release for TBC - name: Package and release for TBC
uses: BigWigsMods/packager@master uses: BigWigsMods/packager@v2
with: with:
args: -g bcc -w 0 args: -g bcc -w 0
- name: Package and release for Wrath - name: Package and release for Wrath
uses: BigWigsMods/packager@master uses: BigWigsMods/packager@v2
with: with:
args: -g wrath -w 0 args: -g wrath -w 0