Hero Talent spell overrides don't check range. #45
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: CI | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 # fetch all history for git describe to work | |
# - name: Install and run Luacheck | |
# uses: nebularg/actions-luacheck@v1 | |
# with: | |
# args: "--no-color -q" | |
# annotate: warning | |
- name: Create Package | |
uses: BigWigsMods/packager@v2 | |
env: | |
CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} | |
- name: Send Status to Discord | |
uses: nebularg/actions-discord-webhook@v1 | |
with: | |
webhook_url: ${{ secrets.WEBHOOK_URL }} | |
status: ${{ job.status }} | |
if: failure() |