-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c7432a
commit da86ffd
Showing
4 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Release AddOn # description of this workflow, can be anything you want | ||
|
||
# triggers when pushing a tag | ||
on: | ||
push: | ||
tags: | ||
- '**' | ||
|
||
env: | ||
CF_API_KEY: ${{ secrets.CF_API_KEY }} | ||
# for github releases, this secret is automatically provided to the workflow | ||
# this must be explicitly configured with read-write permissions on the repository | ||
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
release: # "release" is a job, you can name it anything you want | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 # reads history for commit changelog | ||
|
||
- uses: BigWigsMods/packager@v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.DS_Store | ||
Libs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package-as: RepHub | ||
|
||
externals: | ||
Libs/LibStub: https://repos.wowace.com/wow/libstub/trunk | ||
Libs/AceAddon-3.0: https://repos.curseforge.com/wow/ace3/trunk/AceAddon-3.0 | ||
Libs/AceDB-3.0: https://repos.curseforge.com/wow/ace3/trunk/AceDB-3.0 | ||
Libs/LibDBIcon-1.0: https://repos.curseforge.com/wow/ace3/trunk/LibDBIcon-1.0 | ||
Libs/LibDataBroker-1.1: https://repos.curseforge.com/wow/ace3/trunk/LibDataBroker-1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters