Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Eshanchik committed Jun 21, 2024
1 parent 570624a commit 33a1bd4
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/build_and_push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,10 @@ jobs:
run: |
sed 's/${BRANCH}/'${{ github.ref_name }}'/g' Dockerfile_db > $GITHUB_WORKSPACE/Dockerfile_temp_db
- name: Use temporary Dockerfile in next step
run: |
cat Dockerfile_temp_db # Example of how to use the file
- name: Build and push
uses: docker/build-push-action@v2
with:
file: $GITHUB_WORKSPACE/Dockerfile_temp_db
file: Dockerfile_temp_db
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down Expand Up @@ -150,7 +146,7 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v2
with:
file: $GITHUB_WORKSPACE/Dockerfile_temp_verifier
file: Dockerfile_temp_verifier
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down Expand Up @@ -201,7 +197,7 @@ jobs:
- name: Build and push
uses: docker/build-push-action@v2
with:
file: $GITHUB_WORKSPACE/Dockerfile_temp_mailer
file: Dockerfile_temp_mailer
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
Expand Down

0 comments on commit 33a1bd4

Please sign in to comment.