ci: enable workflow dispatch
Allows manually triggering workflows to rebuild images. Works with push and schedule.
This commit is contained in:
parent
7edc8b6f04
commit
8afb47574c
7 changed files with 7 additions and 0 deletions
1
.github/workflows/base.yml
vendored
1
.github/workflows/base.yml
vendored
|
@ -1,5 +1,6 @@
|
||||||
name: build oses
|
name: build oses
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * 1"
|
- cron: "0 0 * * 1"
|
||||||
push:
|
push:
|
||||||
|
|
1
.github/workflows/games.yml
vendored
1
.github/workflows/games.yml
vendored
|
@ -1,5 +1,6 @@
|
||||||
name: build games
|
name: build games
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * 1"
|
- cron: "0 0 * * 1"
|
||||||
push:
|
push:
|
||||||
|
|
1
.github/workflows/go.yml
vendored
1
.github/workflows/go.yml
vendored
|
@ -1,5 +1,6 @@
|
||||||
name: build go
|
name: build go
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * 1"
|
- cron: "0 0 * * 1"
|
||||||
push:
|
push:
|
||||||
|
|
1
.github/workflows/installers.yml
vendored
1
.github/workflows/installers.yml
vendored
|
@ -1,5 +1,6 @@
|
||||||
name: build installers
|
name: build installers
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * 1"
|
- cron: "0 0 * * 1"
|
||||||
push:
|
push:
|
||||||
|
|
1
.github/workflows/java.yml
vendored
1
.github/workflows/java.yml
vendored
|
@ -1,5 +1,6 @@
|
||||||
name: build java
|
name: build java
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * 1"
|
- cron: "0 0 * * 1"
|
||||||
push:
|
push:
|
||||||
|
|
1
.github/workflows/nodejs.yml
vendored
1
.github/workflows/nodejs.yml
vendored
|
@ -1,5 +1,6 @@
|
||||||
name: build nodejs
|
name: build nodejs
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * 1"
|
- cron: "0 0 * * 1"
|
||||||
push:
|
push:
|
||||||
|
|
1
.github/workflows/python.yml
vendored
1
.github/workflows/python.yml
vendored
|
@ -1,5 +1,6 @@
|
||||||
name: build python
|
name: build python
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * 1"
|
- cron: "0 0 * * 1"
|
||||||
push:
|
push:
|
||||||
|
|
Loading…
Reference in a new issue