Skip to content

Commit

Permalink
message
Browse files Browse the repository at this point in the history
  • Loading branch information
Feinburger committed May 2, 2024
1 parent 32cab31 commit 80cb3b3
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/push-image.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Create and publish Docker images
name: Build and push Docker images for automatic-dns-failover project

on:
push:
Expand Down Expand Up @@ -35,7 +35,7 @@ jobs:
with:
images: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
- name: Build and push automatic-dns-failover image
uses: docker/build-push-action@91df6b874e498451163feb47610c87c4a218c1ee
with:
context: .
Expand All @@ -44,3 +44,11 @@ jobs:
DOCKER_METADATA_OUTPUT_JSON
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Build and push custom-nginx image
uses: docker/build-push-action@91df6b874e498451163feb47610c87c4a218c1ee
with:
context: ./nginx
push: true
tags: ${{ env.IMAGE_REGISTRY }}/${{ github.repository }}/custom-nginx:latest
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 80cb3b3

Please sign in to comment.