Skip to content

Commit

Permalink
Make default the base branch, for now (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
jtbeckman authored Apr 12, 2023
1 parent ef2e4a8 commit a05c02a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Docker Image
on:
push:
branches:
- main
- develop
pull_request:
release:
types:
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Docker Image Build and Publish
id: docker-build-publish
if: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref,'refs/tags/') }}
if: ${{ github.ref == 'refs/heads/develop' || startsWith(github.ref,'refs/tags/') }}
uses: docker/build-push-action@v4
with:
context: "{{defaultContext}}:packages/gateway"
Expand Down

0 comments on commit a05c02a

Please sign in to comment.