File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 90
90
- documentation
91
91
- unit-tests
92
92
- docker-build
93
- if : ${{ github.ref_type == 'push' }}
93
+ if : ${{ github.event_name == 'push' }}
94
94
runs-on : ubuntu-latest
95
95
permissions :
96
96
id-token : write
@@ -124,7 +124,7 @@ jobs:
124
124
docker-build-push :
125
125
needs :
126
126
- integration-tests
127
- if : ${{ (github.ref_type == 'push') && (github.ref == 'refs/heads/master') }}
127
+ if : ${{ (github.event_name == 'push') && (github.ref == 'refs/heads/master') }}
128
128
runs-on : ubuntu-latest
129
129
steps :
130
130
- uses : actions/checkout@v4
@@ -146,7 +146,7 @@ jobs:
146
146
labels : ${{ steps.meta.outputs.labels }}
147
147
148
148
docker-build-release :
149
- if : ${{ github.ref_type == 'tag' }}
149
+ if : ${{ github.event_name == 'tag' }}
150
150
runs-on : ubuntu-latest
151
151
steps :
152
152
- uses : actions/checkout@v4
@@ -175,7 +175,7 @@ jobs:
175
175
labels : ${{ steps.meta.outputs.labels }}
176
176
177
177
pypi-release :
178
- if : ${{ github.ref_type == 'tag' }}
178
+ if : ${{ github.event_name == 'tag' }}
179
179
runs-on : ubuntu-latest
180
180
steps :
181
181
- uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments