Skip to content

Ellyb no longer a submodule + C_AddOns fix #10

Ellyb no longer a submodule + C_AddOns fix

Ellyb no longer a submodule + C_AddOns fix #10

Workflow file for this run

---
name: Pull Request
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2
- uses: actions/setup-ruby@v1
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Run Luacheck
uses: nebularg/actions-luacheck@v1
with:
args: --no-color -q
annotate: warning
- name: Create Retail Package
uses: BigWigsMods/packager@master
with:
args: -d -z
- uses: actions/upload-artifact@v2
with:
name: Storyline-PR-${{ github.event.number }}
path: .release/
- name: Send Webhook Notification
if: failure()
run: |
git clone https://github.com/DiscordHooks/github-actions-discord-webhook.git webhook
bash webhook/send.sh $JOB_STATUS $WEBHOOK_URL
env:
JOB_STATUS: ${{ job.status }}
HOOK_OS_NAME: ${{ runner.os }}
WEBHOOK_URL: ${{ secrets.WEBHOOK_URL }}
WORKFLOW_NAME: ${{ github.workflow }}