Skip to content

Commit d6daac8

Browse files
committed
ci: only release docker on scheduled builds.
1 parent 7ee0ee8 commit d6daac8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build-test-gumtree.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ jobs:
7878
docker:
7979
runs-on: ubuntu-latest
8080
needs: build-test-deploy
81-
if: ${{ !(contains(github.event.head_commit.message, '[no ci]') || startsWith(github.event.head_commit.message, 'doc')) }}
81+
82+
if: ${{ github.event_name == 'schedule' && !(contains(github.event.head_commit.message, '[no ci]') || startsWith(github.event.head_commit.message, 'doc')) }}
8283
steps:
8384
- name: set up docker buildx
8485
uses: docker/setup-buildx-action@v3

0 commit comments

Comments
 (0)