From 0ba5d507e7c10962f63a559aff911d07a3ae8d14 Mon Sep 17 00:00:00 2001 From: mynian Date: Tue, 14 Jun 2022 07:57:11 -0400 Subject: [PATCH 1/2] TOC Bump --- HonorTrack.toc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HonorTrack.toc b/HonorTrack.toc index 2834f2c..56bcd93 100644 --- a/HonorTrack.toc +++ b/HonorTrack.toc @@ -1,7 +1,7 @@ -## Interface: 90200 +## Interface: 90205 ## Title: Honor Track ## Notes: Shows your current honor info and allows you to set a goal -## Version: 3.2.0 +## Version: 3.2.1 ## SavedVariablesPerCharacter: hthonorgoal, htgoalset, htvisible, hthonorgained, htcounter, httimer LibStub.lua From 6ac457ee1e49bc8b5755efd334643037132aee71 Mon Sep 17 00:00:00 2001 From: mynian Date: Wed, 8 Feb 2023 16:23:21 -0500 Subject: [PATCH 2/2] Create release.yml --- .github/workflows/release.yml | 41 +++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..93bc450 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,41 @@ +# 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: + - '**' + +# 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.GH_OAUTH }} # "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