Skip to content
This repository was archived by the owner on Oct 4, 2025. It is now read-only.

Commit 130d498

Browse files
committed
Use BigWigs Packager
1 parent 99bc22d commit 130d498

File tree

5 files changed

+48
-26
lines changed

5 files changed

+48
-26
lines changed

.github/workflows/release.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# description of this workflow, can be anything you want
2+
name: Package and release
3+
4+
# we need to let GitHub know _when_ we want to release, typically only when we create a new tag.
5+
# this will target only tags, and not all pushes to the master branch.
6+
# this part can be heavily customized to your liking, like targeting only tags that match a certain word,
7+
# other branches or even pullrequests.
8+
on:
9+
push:
10+
tags:
11+
- '**'
12+
13+
# a workflow is built up as jobs, and within these jobs are steps
14+
jobs:
15+
16+
# "release" is a job, you can name it anything you want
17+
release:
18+
19+
# we can run our steps on pretty much anything, but the "ubuntu-latest" image is a safe bet
20+
runs-on: ubuntu-latest
21+
22+
# specify the environment variables used by the packager, matching the secrets from the project on GitHub
23+
env:
24+
CF_API_KEY: ${{ secrets.CF_API_KEY }}
25+
#WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }}
26+
#WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }}
27+
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} # "GITHUB_TOKEN" is a secret always provided to the workflow
28+
# for your own token, the name cannot start with "GITHUB_"
29+
30+
# "steps" holds a list of all the steps needed to package and release our AddOn
31+
steps:
32+
33+
# we first have to clone the AddOn project, this is a required step
34+
- name: Clone project
35+
uses: actions/checkout@v2
36+
with:
37+
fetch-depth: 0 # gets git history for changelogs
38+
39+
# once cloned, we just run the GitHub Action for the packager project
40+
- name: Package and release
41+
uses: BigWigsMods/packager@v2

Masque_Neuron-BCC.toc

Lines changed: 0 additions & 13 deletions
This file was deleted.

Masque_Neuron-Classic.toc

Lines changed: 0 additions & 13 deletions
This file was deleted.

Masque_Neuron.toc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
## Interface: 90200
2+
## Interface-Classic: 11403
3+
## Interface-BCC: 20504
24
## Title: Masque: Neuron
35
## Notes: The default Masque skin for the Neuron World of Warcraft add-on
46
## Author: Britt W. Yazel
@@ -9,5 +11,6 @@
911
## X-Credits-Maintainer: Britt W. Yazel
1012
## X-Email: [email protected]
1113
## X-License: MIT
14+
## X-Curse-Project-ID: 341408
1215

1316
Masque_Neuron.lua

pkgmeta.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
package-as: Masque_Neuron
22

33
enable-nolib-creation: no
4+
enable-toc-creation: yes
5+
6+
required-dependencies:
7+
- masque
48

59
ignore:
610
- README.md

0 commit comments

Comments
 (0)