-
Notifications
You must be signed in to change notification settings - Fork 26
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
346bb8e
commit 1542cd6
Showing
1 changed file
with
29 additions
and
0 deletions.
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,29 @@ | ||
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 | ||
on: | ||
push: | ||
tags: | ||
- '**' | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
|
||
# specify the environment variables used by the packager, matching the secrets from the project on GitHub | ||
env: | ||
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} # "GITHUB_TOKEN" is a secret always provided to the workflow | ||
|
||
|
||
# "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@v3 | ||
|
||
|
||
# once cloned, we just run the GitHub Action for the packager project | ||
- name: Package and release | ||
uses: BigWigsMods/packager@v2 |