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 8d1d3b8 commit 1605db2Copy full SHA for 1605db2
.github/workflows/ci.yaml
@@ -4,6 +4,8 @@ on:
4
push:
5
branches:
6
- main
7
+ tags:
8
+ - "v*.*.*"
9
pull_request:
10
11
jobs:
.github/workflows/docker.yaml
@@ -1,11 +1,11 @@
1
name: Build and push Docker images
2
3
on:
- push:
- branches:
- - main
- tags:
- - "v*.*.*"
+ workflow_run:
+ workflows:
+ - "Python tests"
+ types:
+ - completed
workflow_dispatch:
env:
@@ -14,6 +14,9 @@ env:
14
15
build-and-push:
16
runs-on: ubuntu-latest
17
+ if: |
18
+ github.event_name == 'workflow_dispatch' ||
19
+ github.event.workflow_run.conclusion == 'success'
20
permissions:
21
contents: read
22
packages: write
0 commit comments