Skip to content

Release

Release #310

Workflow file for this run

# This is a workflow to package and upload on CurseForge and GitHub Releases using BigWigs/Packager
name: Release
# Controls when the action will run.
on:
# Package alpha version at midnight UTC every Friday
schedule:
- cron: '0 6 * * THU'
# Triggers the workflow on tag events
push:
tags: '*'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Fetch some history
run: git fetch origin master --depth 250 --tags
# once cloned, we just run the GitHub Action for the packager project
- name: Package and release
uses: BigWigsMods/packager@v2
env:
CF_API_KEY: ${{ secrets.CF_API_KEY }}
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}
#WOWI_API_TOKEN: ${{ secrets.WOWI_API_TOKEN }}
WAGO_API_TOKEN: ${{ secrets.WAGO_API_KEY }}