fa8df286d9
Signed-off-by: txtsd <thexerothermicsclerodermoid@gmail.com>
35 lines
660 B
YAML
35 lines
660 B
YAML
name: Build Application
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'stable'
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '**/LICENSE'
|
|
- 'flake.lock'
|
|
- '**.nix'
|
|
- 'packages/**'
|
|
- '.github/ISSUE_TEMPLATE/**'
|
|
- '.markdownlint**'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '**/LICENSE'
|
|
- 'flake.lock'
|
|
- '**.nix'
|
|
- 'packages/**'
|
|
- '.github/ISSUE_TEMPLATE/**'
|
|
- '.markdownlint**'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
build_debug:
|
|
name: Build Debug
|
|
uses: ./.github/workflows/build.yml
|
|
with:
|
|
build_type: Debug
|
|
secrets:
|
|
SPARKLE_ED25519_KEY: ${{ secrets.SPARKLE_ED25519_KEY }}
|