-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
uses shared github workflow to release
so it's easier for me to maintain all these different addons in their repos
- Loading branch information
EvanCobb
committed
Feb 27, 2022
1 parent
6aac6f4
commit 8158e8f
Showing
3 changed files
with
19 additions
and
106 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,19 @@ | ||
name: Release new version of addon to WoW Interface | ||
|
||
on: | ||
workflow_dispatch: | ||
# Enables a button to manually run this against the main branch | ||
branches: [ main ] | ||
push: | ||
# Enables automatic deploys off pushes/merges into the main branch | ||
branches: [ main ] | ||
|
||
jobs: | ||
build: | ||
uses: icbat/wow-addon-github-workflow/.github/workflows/release-wowi.yml@main | ||
with: | ||
addon_name: Broker_CTA | ||
addon_bundled_files: libs/ Broker_CTA.lua Broker.lua Display.lua Localization.lua LICENSE README.md | ||
wowi_id: 25623 | ||
secrets: | ||
wowi_api_token: ${{secrets.WOWI_API_TOKEN}} |