Skip to content

Commit a027be0

Browse files
authored
Merge pull request #376 from constructive-io/anmol/restart-docker-builds
docker: add triggers back in docker build gh action
2 parents 46014e2 + a2770e2 commit a027be0

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

.github/workflows/docker-launchql.yaml

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
name: Constructive Docker
22

33
on:
4-
# push:
5-
# branches:
6-
# - main
7-
# - v1
8-
# - release/*
9-
# pull_request:
10-
# branches:
11-
# - main
12-
# - v1
4+
push:
5+
branches:
6+
- main
7+
- v1
8+
- release/*
9+
pull_request:
10+
branches:
11+
- main
12+
- v1
13+
types: [opened, reopened, synchronize, ready_for_review]
1314
workflow_dispatch: {}
1415

1516
concurrency:
@@ -18,7 +19,7 @@ concurrency:
1819

1920
jobs:
2021
build-push-launchql:
21-
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
22+
if: github.event_name != 'pull_request'
2223
strategy:
2324
fail-fast: false
2425
matrix:
@@ -116,7 +117,7 @@ jobs:
116117
# Assemble per-architecture images into a single
117118
# multi-arch manifest for each tag.
118119
publish-launchql-manifest:
119-
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
120+
if: github.event_name != 'pull_request'
120121
runs-on: ubuntu-latest
121122
needs: build-push-launchql
122123

0 commit comments

Comments
 (0)