Skip to content

feat: auto version

feat: auto version #10

Workflow file for this run

name: πŸš€ Publish Stable Version
on:
push:
tags-ignore:
- "**alpha**"
- "**beta**"
jobs:
build:
name: πŸ“¦ Package
runs-on: ubuntu-latest
steps:
- name: Pull the latest version
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Auto Packaging
uses: BigWigsMods/packager@master
env:
CF_API_KEY: ${{ secrets.RELEASE_API_TOKEN_CURSEFORGE }}
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }}
WAGO_API_TOKEN: ${{ secrets.RELEASE_API_TOKEN_WAGO }}
- name: Upload to Github Actions
uses: actions/upload-artifact@v6
with:
name: UnwindTools
path: .release/*.zip
- name: Send a message to Discord if meets a failure
uses: nebularg/actions-discord-webhook@v1
with:
webhook_url: ${{ secrets.DISCORD_WEBHOOK_GITHUB_ACTIONS }}
status: ${{ job.status }}
if: failure()