CI: Integrate workflow_triggers for nowinandroid from cartland's fork (#1873)

* Update workflow triggers
- Build.yaml: Add workflow_dispatch, specify branches for pull_request.
- NightlyBaselineProfiles.yaml: Add workflow_dispatch and push (main) triggers.
- Release.yml: Add workflow_dispatch trigger.

* Allow build for PR on all branches

* Remove the push trigger for NightlyBaselineProfiles.yaml
pull/1865/merge
Christopher Cartland 3 months ago committed by GitHub
parent 689ef92e41
commit ba1a463498
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,6 +1,7 @@
name: Build name: Build
on: on:
workflow_dispatch:
push: push:
branches: branches:
- main - main

@ -1,6 +1,7 @@
name: NightlyBaselineProfiles name: NightlyBaselineProfiles
on: on:
workflow_dispatch:
schedule: schedule:
- cron: '42 4 * * *' - cron: '42 4 * * *'

@ -1,6 +1,7 @@
name: GitHub Release with APKs name: GitHub Release with APKs
on: on:
workflow_dispatch:
push: push:
tags: tags:
- 'v*' - 'v*'

Loading…
Cancel
Save