-
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.
- Loading branch information
1 parent
5e5054d
commit a3e670f
Showing
1 changed file
with
32 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,32 @@ | ||
name: Package and release | ||
|
||
on: | ||
push: | ||
tags: | ||
- '**' | ||
|
||
jobs: | ||
|
||
release: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
env: | ||
CF_API_KEY: ${{ secrets.CF_API_KEY }} | ||
WOWI_API_TOKEN: ${{ secrets.WOWI_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: | ||
|
||
- name: Clone project | ||
uses: actions/checkout@v1 | ||
with: | ||
fetch-depth: 50 | ||
|
||
- name: Package and release | ||
uses: BigWigsMods/packager@master | ||
|
||
# - name: Package and release for Classic | ||
# uses: BigWigsMods/packager@master | ||
# with: | ||
# args: -g 1.13.5 -w 0 |