Merge pull request #776 from WowRarity/fix-toc-versions #251
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Packaging | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
paths-ignore: | |
- '.github/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 100 | |
- name: Publish new release | |
if: startsWith(github.ref, 'refs/tags/r') | |
uses: BigWigsMods/packager@master | |
env: | |
CF_API_KEY: ${{ secrets.CURSEFORGE_API_TOKEN }} | |
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} |