Merge pull request #778 from WowRarity/changelog-update-r737 #253
Workflow file for this run
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 }} |