Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
gi2k15 committed Jun 29, 2021
2 parents 118fed6 + 4cbe018 commit f652ae9
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release AddOn # description of this workflow, can be anything you want

# triggers when pushing a tag
on:
push:
tags:
- '**-Release'

env:
CF_API_KEY: ${{ secrets.CF_API_KEY }}
WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }}
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }}
# for github releases, this secret is automatically provided to the workflow
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@v1
- uses: BigWigsMods/packager@master

0 comments on commit f652ae9

Please # to comment.