From a32b75bf44367d88c9f61faf3ec8e2886b9e36a6 Mon Sep 17 00:00:00 2001 From: Parnic Date: Thu, 22 Sep 2022 11:01:21 -0500 Subject: [PATCH] Update to latest packager example --- .github/workflows/release.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be34a10..47a4bf5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,25 +32,27 @@ jobs: # we first have to clone the AddOn project, this is a required step - 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 - 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 # for the Classic version of the game - name: Package and release for Classic - uses: BigWigsMods/packager@master + uses: BigWigsMods/packager@v2 with: args: -g classic -w 0 - name: Package and release for TBC - uses: BigWigsMods/packager@master + uses: BigWigsMods/packager@v2 with: args: -g bcc -w 0 - name: Package and release for Wrath - uses: BigWigsMods/packager@master + uses: BigWigsMods/packager@v2 with: args: -g wrath -w 0