Skip to content
This repository was archived by the owner on Jan 21, 2024. It is now read-only.

Commit 066e18e

Browse files
committed
Add wago.io support and BigWigs packager
1 parent 6a5a2a2 commit 066e18e

File tree

6 files changed

+57
-127
lines changed

6 files changed

+57
-127
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

Neuron-BCC.toc

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

Neuron-Classic.toc

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

Neuron.toc

Lines changed: 5 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: Neuron
35
## Notes: A macro-based action bar and object manager add-on
46
## Author: Britt W. Yazel
@@ -10,6 +12,9 @@
1012
## X-Credits-Maintainer: Britt W. Yazel
1113
## X-Email: [email protected]
1214
## X-License: MIT
15+
## X-Curse-Project-ID: 279283
16+
## X-Wago-ID: e56n1AN9
17+
## X-WoWI-ID: 10636
1318

1419

1520
Libs\embeds.xml

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Neuron
2-
Neuron is a full featured action Bar addon for [World of Warcraft: Shadowlands](https://worldofwarcraft.com/en-us/), updated for Patch 9.0.5
2+
Neuron is a full featured action Bar addon for [World of Warcraft: Shadowlands](https://worldofwarcraft.com/en-us/), updated for Patch 9.2.0
33

44

55
## Manual Install:

pkgmeta.yaml

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,17 @@
11
package-as: Neuron
22

3+
enable-nolib-creation: no
4+
enable-toc-creation: yes
35

4-
#this will eventually be necessary for curse to automagically pull in all the necessary and up-to-date libraries
5-
#for wowinterface, I should just upload the versions that curse spits out, which means I need to plug in all of curse's feature sets.
6-
#externals:
7-
#Neuron/Libs/AceAddon-3.0: https://repos.wowace.com/wow/ace3/trunk/AceAddon-3.0
8-
#Neuron/Libs/AceConfig-3.0: https://repos.wowace.com/wow/ace3/trunk/AceConfig-3.0
9-
#Neuron/Libs/AceDB-3.0: https://repos.wowace.com/wow/ace3/trunk/AceDB-3.0
10-
#Neuron/Libs/AceDBOptions-3.0: https://repos.wowace.com/wow/ace3/trunk/AceDBOptions-3.0
11-
#Neuron/Libs/AceEvent-3.0: https://repos.wowace.com/wow/ace3/trunk/AceEvent-3.0
12-
#Neuron/Libs/AceGUI-3.0: https://repos.wowace.com/wow/ace3/trunk/AceGUI-3.0
13-
#Neuron/Libs/AceLocale-3.0: https://repos.wowace.com/wow/ace3/trunk/AceLocale-3.0
14-
#Neuron/Libs/CallbackHandler-1.0: https://repos.wowace.com/wow/callbackhandler/trunk/CallbackHandler-1.0
15-
#Neuron/Libs/LibStub: https://repos.wowace.com/wow/libstub/trunk
16-
#Neuron/Libs/LibDataBroker-1.1: https://repos.wowace.com/wow/libdatabroker-1-1
17-
#Neuron/Libs/AceLocale-3.0: https://repos.wowace.com/wow/ace3/trunk/AceLocale-3.0
18-
#Neuron/Libs/LibStub: https://repos.wowace.com/wow/libstub/trunk
6+
optional-dependencies:
7+
- masque
8+
- masque-neuron
199

20-
enable-nolib-creation: no
10+
embedded-libraries:
11+
- Ace3
12+
- LibDualSpec-1-0
13+
- LibDBIcon-1-0
14+
- LibDeflate
2115

2216
ignore:
2317
- README.md
24-
#- Neuron/Libs/
25-
26-
optional-dependencies:
27-
- masque

0 commit comments

Comments
 (0)