Add a chat print when you try to open the spell parser in combat #184
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: Package addon | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
paths-ignore: | |
- '.github/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout addon | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Run luacheck | |
uses: BigWigsMods/actions/luacheck@master | |
with: | |
args: -q | |
- name: Package | |
uses: BigWigsMods/packager@master | |
env: | |
CF_API_KEY: ${{ secrets.CF_API_KEY }} | |
WAGO_API_TOKEN: ${{ secrets.WAGO_API_TOKEN }} | |
GITHUB_OAUTH: ${{ secrets.GITHUB_TOKEN }} |