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 3207c75 commit afef1b6Copy full SHA for afef1b6
.github/workflows/docker.yml
@@ -14,7 +14,7 @@ on:
14
jobs:
15
push_to_registry:
16
name: Push Docker image to Docker Hub
17
- if: ${{ github.event.workflow_run.conclusion == 'success' }}
+ if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
18
runs-on: ubuntu-latest
19
steps:
20
- name: Check out the repo
.github/workflows/main.yml
@@ -1,7 +1,5 @@
1
on: [push, workflow_dispatch]
2
3
-name: Lint & test
4
-
5
6
check:
7
name: Check
0 commit comments