Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
enderneko committed May 30, 2023
0 parents commit 0651009
Show file tree
Hide file tree
Showing 18 changed files with 2,368 additions and 0 deletions.
16 changes: 16 additions & 0 deletions !InstanceSpellCollector.toc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
## Interface: 100100
## Title: |cFFFF3030Instance Spell Collector|r
## Notes: Collect debuffs and enemy casts!
## Version: r1
## Author: 篠崎
## X-Flavor: Mainline
## SavedVariables: ISC_Config,ISC_Data
## AddonCompartmentFunc: ISC_OnAddonCompartmentClick
## IconTexture: interface/icons/inv_sigil_ulduarall.blp

## X-Curse-Project-ID: 867852

Libs\LoadLibs.xml

Core.lua
Collector.lua
14 changes: 14 additions & 0 deletions !InstanceSpellCollector_Wrath.toc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Interface: 30401
## Title: |cFFFF3030Instance Spell Collector|r
## Notes: Collect debuffs and enemy casts
## Version: r1
## Author: 篠崎
## X-Flavor: Wrath
## SavedVariables: ISC_Config,ISC_Data

## X-Curse-Project-ID: 867852

Libs\LoadLibs_Wrath.xml

Core.lua
Collector.lua
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
custom: "https://afdian.net/@enderneko"
40 changes: 40 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# 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.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@v1 # note: checkout@v2 breaks git history, so generating a changelog and
# file naming for non-tagged builds will not work properly

# once cloned, we just run the GitHub Action for the packager project
- name: Create Package
uses: BigWigsMods/packager@v2
2 changes: 2 additions & 0 deletions .pkgmeta
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
package-as: !InstanceSpellCollector
enable-nolib-creation: no
Loading

0 comments on commit 0651009

Please sign in to comment.