Skip to content

Commit

Permalink
Create release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladinator89 authored Oct 15, 2020
1 parent 5e5054d commit a3e670f
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
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

0 comments on commit a3e670f

Please sign in to comment.