Skip to content

Commit

Permalink
Revert "test multi arch build"
Browse files Browse the repository at this point in the history
This reverts commit fdca96f.
  • Loading branch information
naguirre committed Jul 5, 2023
1 parent fdca96f commit 547c933
Showing 1 changed file with 52 additions and 52 deletions.
104 changes: 52 additions & 52 deletions .github/workflows/build_docker_dev.yml
Original file line number Diff line number Diff line change
@@ -1,53 +1,53 @@
name: Docker dev build

on:
push:
branches: [ master ]

env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}


jobs:
# define job to build and publish docker image
build-and-push-docker-image:
name: Build Docker image and push to repositories
# run only when code is compiling and tests are passing
runs-on: ubuntu-latest

# steps to perform in job
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2

# setup Docker buld action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
with:
platforms: linux/amd64

- name: Login to Github Packages
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build image and push to Docker Hub and GitHub Container Registry
uses: docker/build-push-action@v4
with:
# relative path to the place where source code with Dockerfile is located
context: "{{defaultContext}}:docker"
# Note: tags has to be all lower-case
tags: |
ghcr.io/calaos/calaos_home:latest
ghcr.io/calaos/calaos_home:${{ github.sha }}
push: ${{ github.ref == 'refs/heads/master' }}
platforms: linux/amd64

- name: Image digest
name: Docker dev build

on:
push:
branches: [ master ]

env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}


jobs:
# define job to build and publish docker image
build-and-push-docker-image:
name: Build Docker image and push to repositories
# run only when code is compiling and tests are passing
runs-on: ubuntu-latest
# steps to perform in job
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
# setup Docker buld action
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v2
with:
platforms: linux/amd64

- name: Login to Github Packages
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build image and push to Docker Hub and GitHub Container Registry
uses: docker/build-push-action@v4
with:
# relative path to the place where source code with Dockerfile is located
context: "{{defaultContext}}:docker"
# Note: tags has to be all lower-case
tags: |
ghcr.io/calaos/calaos_home:latest
ghcr.io/calaos/calaos_home:${{ github.sha }}
push: ${{ github.ref == 'refs/heads/master' }}
platforms: linux/amd64

- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

0 comments on commit 547c933

Please sign in to comment.