Skip to content

Feature Flags!

Feature Flags! #2265

Workflow file for this run

name: CI-PR
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
fetch-depth: 200
- name: Install and run Luacheck
uses: nebularg/actions-luacheck@v1
with:
args: "--no-color -q"
annotate: warning
- name: Update Build Date
run: sed -i "s/@build-time@/`date +%Y%m%d%H%M%S`/" WeakAuras/Init.lua
- name: Flag Experimental Build
run: |
sed -i -e "s/--\[=====\[@experimental@/--@experimental@/" WeakAuras/Init.lua \
-e "s/--@end-experimental@\]=====\]/--@end-experimental/" WeakAuras/Init.lua \
-e "s/--@non-experimental@/--\[=====\[@non-experimental@/" WeakAuras/Init.lua \
-e "s/--@end-non-experimental@/--@end-non-experimental\]=====\]/" WeakAuras/Init.lua
- name: Create Package
uses: BigWigsMods/packager@v2
with:
args: -d -z
- uses: actions/upload-artifact@v3
with:
name: WeakAuras-PR#${{ github.event.number }}-${{ github.sha }}
path: .release/
- name: Send Status to Discord
uses: nebularg/actions-discord-webhook@v1
with:
webhook_url: ${{ secrets.WEBHOOK_URL }}
status: ${{ job.status }}
if: failure()