Skip to content

Commit

Permalink
removed push for pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
jschiel committed Feb 24, 2023
1 parent d1e8ed3 commit daccdb5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/buildBackend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ jobs:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Checkout
uses: actions/checkout@v2
Expand All @@ -33,7 +27,7 @@ jobs:
id: docker_build_backend
uses: docker/build-push-action@v2
with:
push: true
push: false
tags: fius/drinklistv4-backend:dev
file: backend/Dockerfile
context: ./backend
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/buildFrontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ jobs:
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Checkout
uses: actions/checkout@v2
Expand All @@ -33,7 +27,7 @@ jobs:
id: docker_build_frontend
uses: docker/build-push-action@v2
with:
push: true
push: false
tags: fius/drinklistv4-frontend:dev
file: frontend/Dockerfile
context: ./frontend
Expand Down

0 comments on commit daccdb5

Please sign in to comment.