Skip to content

Commit

Permalink
Allow to manually trigger building docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandgeider committed Aug 7, 2023
1 parent bab92d6 commit 51f8915
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/docker-base.yml
Expand Up @@ -3,9 +3,10 @@ name: Build and push base Docker images
# Only build when the dockerfile has changed, otherwise scheduled on the first
# of each month
on:
workflow_dispatch:
push:
branches:
'- "master"'
- master
paths:
- 'extras/docker/base/Dockerfile'
- '.github/workflows/docker-base.yml'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docker-demo.yml
Expand Up @@ -4,6 +4,7 @@ name: Build and push demo Docker image
# (on the 1st and 15th every month) since it's not so important to keep this image
# exactly in sync with master
on:
workflow_dispatch:
push:
branches:
- 'master'
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/docker.yml
Expand Up @@ -2,6 +2,7 @@
name: Build and push production Docker images

on:
workflow_dispatch:
push:
branches:
- master
Expand Down

0 comments on commit 51f8915

Please sign in to comment.