Merge pull request #565 from godejord/564 #84
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@v1 | |
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 }} |