Skip to content

Merge branch 'develop' #159

Merge branch 'develop'

Merge branch 'develop' #159

Workflow file for this run

name: Release Retail Update # description of this workflow, can be anything you want
# triggers when pushing a tag
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
- '!*-Wrath'
env:
# for github releases, this secret is automatically provided to the workflow
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}
CF_API_KEY: ${{ secrets.CF_API_KEY }}
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@v2