.github/workflows: run darwin, pages after buildbot completes
This commit is contained in:
parent
42fb15140f
commit
97e272a2a0
2 changed files with 4 additions and 4 deletions
.github/workflows
4
.github/workflows/darwin.yml
vendored
4
.github/workflows/darwin.yml
vendored
|
@ -1,8 +1,7 @@
|
|||
name: "darwin"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
status:
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
|
@ -18,6 +17,7 @@ jobs:
|
|||
matrix:
|
||||
host: [darwin02, darwin03]
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'status' && github.event.context == 'buildbot/nix-eval' && github.event.state == 'success' && github.ref == 'refs/heads/master')
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Nix
|
||||
|
|
4
.github/workflows/pages.yml
vendored
4
.github/workflows/pages.yml
vendored
|
@ -1,8 +1,7 @@
|
|||
name: "pages"
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
status:
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
|
@ -17,6 +16,7 @@ concurrency:
|
|||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'status' && github.event.context == 'buildbot/nix-eval' && github.event.state == 'success' && github.ref == 'refs/heads/master')
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Install Nix
|
||||
|
|
Loading…
Add table
Reference in a new issue