Skip to content

Commit

Permalink
Merge pull request #24 from DataSeer/automatic_docker_build
Browse files Browse the repository at this point in the history
fix : fix build failure
  • Loading branch information
NicolasKieffer authored Jan 9, 2025
2 parents b51c08c + 587bbf1 commit f792971
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/docker-build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
- completed
branches:
- dev
push:
branches:
- dev
pull_request:
types:
- closed
Expand All @@ -16,8 +19,9 @@ on:
jobs:
build:
if: |
github.event.workflow_run.conclusion == 'success' &&
github.event.pull_request.merged == true
github.event.workflow_run.conclusion == 'success'
github.event_name == 'push' ||
(github.event_name == 'pull_request' && github.event.pull_request.merged == true)
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit f792971

Please sign in to comment.