Skip to content

Commit

Permalink
ci: only release docker on scheduled builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfaller committed May 23, 2024
1 parent 7ee0ee8 commit d6daac8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build-test-gumtree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ jobs:
docker:
runs-on: ubuntu-latest
needs: build-test-deploy
if: ${{ !(contains(github.event.head_commit.message, '[no ci]') || startsWith(github.event.head_commit.message, 'doc')) }}

if: ${{ github.event_name == 'schedule' && !(contains(github.event.head_commit.message, '[no ci]') || startsWith(github.event.head_commit.message, 'doc')) }}
steps:
- name: set up docker buildx
uses: docker/setup-buildx-action@v3
Expand Down

0 comments on commit d6daac8

Please sign in to comment.