ci: enable workflow dispatch

Allows manually triggering workflows to rebuild images. Works with push and schedule.
This commit is contained in:
Alex 2021-09-23 01:35:21 +03:00
parent 7edc8b6f04
commit 8afb47574c
No known key found for this signature in database
GPG key ID: C6172741CCF116A1
7 changed files with 7 additions and 0 deletions

View file

@ -1,5 +1,6 @@
name: build oses
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 1"
push:

View file

@ -1,5 +1,6 @@
name: build games
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 1"
push:

View file

@ -1,5 +1,6 @@
name: build go
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 1"
push:

View file

@ -1,5 +1,6 @@
name: build installers
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 1"
push:

View file

@ -1,5 +1,6 @@
name: build java
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 1"
push:

View file

@ -1,5 +1,6 @@
name: build nodejs
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 1"
push:

View file

@ -1,5 +1,6 @@
name: build python
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * 1"
push: