pollymc/.github/workflows/trigger_builds.yml

33 lines
608 B
YAML
Raw Normal View History

name: Build Application
on:
2022-02-21 20:56:05 +05:30
push:
branches-ignore:
- 'stable'
2022-03-02 01:17:08 +05:30
paths-ignore:
- '**.md'
- '**/LICENSE'
- 'flake.lock'
- '**.nix'
2022-03-25 23:17:14 +05:30
- 'packages/**'
- '.github/ISSUE_TEMPLATE/**'
2022-02-21 20:56:05 +05:30
pull_request:
2022-03-02 01:17:08 +05:30
paths-ignore:
- '**.md'
- '**/LICENSE'
- 'flake.lock'
- '**.nix'
2022-03-25 23:17:14 +05:30
- 'packages/**'
- '.github/ISSUE_TEMPLATE/**'
2022-02-21 20:56:05 +05:30
workflow_dispatch:
jobs:
build_debug:
name: Build Debug
uses: ./.github/workflows/build.yml
with:
build_type: Debug
2022-05-21 22:53:02 +05:30
secrets:
SPARKLE_ED25519_KEY: ${{ secrets.SPARKLE_ED25519_KEY }}