From a5e13bdb7f220b23303d57f4cb5de6ba676e65e6 Mon Sep 17 00:00:00 2001 From: Alar of Runetotem Date: Wed, 24 Apr 2024 22:55:01 +0200 Subject: [PATCH] v2.12.0 --- .github/workflows/main.yml | 44 ++++++++++++++++++++++++++++++++++++++ RelNotes.lua | 3 +++ 2 files changed, 47 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..b080cf5 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,44 @@ +# description of this workflow, can be anything you want +name: Package and release + +# we need to let GitHub know _when_ we want to release, typically only when we create a new tag. +# this will target only tags, and not all pushes to the master branch. +# this part can be heavily customized to your liking, like targeting only tags that match a certain word, +# other branches or even pullrequests. +on: + push: + tags: + - '**' +# Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# a workflow is built up as jobs, and within these jobs are steps +jobs: + + # "release" is a job, you can name it anything you want + release: + + # we can run our steps on pretty much anything, but the "ubuntu-latest" image is a safe bet + runs-on: ubuntu-latest + + # specify the environment variables used by the packager, matching the secrets from the project on GitHub + 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.GITHUB_TOKEN }} # "GITHUB_TOKEN" is a secret always provided to the workflow + # for your own token, the name cannot start with "GITHUB_" + + # "steps" holds a list of all the steps needed to package and release our AddOn + steps: + + # we first have to clone the AddOn project, this is a required step + - name: Clone project + uses: actions/checkout@v3 + with: + fetch-depth: 0 # gets entire git history, needed for automatic changelogs + + # once cloned, we just run the GitHub Action for the packager project + - name: Package and release +# uses: BigWigsMods/packager@v2 + uses: alarofrunetotem/packager@subdirs-checkout diff --git a/RelNotes.lua b/RelNotes.lua index 486c02c..c00c1f5 100644 --- a/RelNotes.lua +++ b/RelNotes.lua @@ -13,6 +13,9 @@ Starts fishing /nofish .]]) + self:RelNotes(2,12,0,[[ +Feature: preliminary support for classic and wrath + ]]) self:RelNotes(2,11,2,[[ Toc: 10.2.6 ]])