Skip to content

toc: bump version

toc: bump version #43

Workflow file for this run

name: publish_stable
on:
push:
tags-ignore:
- "**-alpha-**"
- "**-beta-**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Pull the latest version
uses: actions/checkout@v1
with:
fetch-depth: 50
- name: Auto Packaging
uses: BigWigsMods/packager@master
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_TOKEN }}
- name: Upload to GitHub Actions
uses: actions/upload-artifact@v2
with:
name: WindChatFilter
path: .release/*.zip
- name: Send a message to Discord if meets a failure
uses: nebularg/actions-discord-webhook@v1
with:
webhook_url: ${{ secrets.WEBHOOK_URL }}
status: ${{ job.status }}
if: failure()