mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-15 15:19:57 +00:00
9d7f145c25
* Sign windows binaries * Fix temp test * Remove temporary test --------- Co-authored-by: Alexandru Macocian <amacocian@microsoft.com>
27 lines
647 B
YAML
27 lines
647 B
YAML
# This action simulates a CD pipeline without the package publishing
|
|
# to ensure that changes don't break the real run
|
|
name: Daybreak Dry-Run CD Pipeline
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- "Daybreak.Core/**"
|
|
- "Daybreak.Installer/**"
|
|
- "Daybreak.API/**"
|
|
- "Daybreak.Shared/**"
|
|
- "Daybreak.Windows/**"
|
|
- "Daybreak.Linux/**"
|
|
- ".github/scripts/**"
|
|
- ".github/workflows/cd-template.yml"
|
|
- ".github/workflows/cd-dry-run.yml"
|
|
|
|
jobs:
|
|
cd:
|
|
uses: ./.github/workflows/cd-template.yml
|
|
with:
|
|
publishRelease: false
|
|
signBinaries: false
|
|
secrets: inherit
|