We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3187279 commit e381c93Copy full SHA for e381c93
1 file changed
.github/workflows/containers.yml
@@ -10,6 +10,9 @@ on:
10
workflows: ["Build"]
11
types: [completed]
12
branches: [master]
13
+ push:
14
+ tags:
15
+ - '[0-9]+.[0-9]+.[0-9]+'
16
17
env:
18
DOCKER_REPOSITORY: ${{ secrets.DOCKER_REPOSITORY || 'geopython/pygeoapi' }}
@@ -19,7 +22,7 @@ jobs:
19
22
on-success:
20
23
name: Build, Test and Push Docker Image to DockerHub
21
24
runs-on: ubuntu-24.04
- if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
25
+ if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'push' }}
26
permissions:
27
packages: write
28
contents: read
0 commit comments