Skip to content

Add source code and composer dependencies to image build (#79) #16

Add source code and composer dependencies to image build (#79)

Add source code and composer dependencies to image build (#79) #16

Workflow file for this run

name: Build and push Docker image
on:
push:
tags:
- '*.*.*'
permissions:
packages: write
env:
REGISTRY: ghcr.io
REGISTRY_IMAGE: ghcr.io/edgebox-iot/api
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Set image tags
run: echo "REGISTRY_IMAGE_TAG=${{ env.REGISTRY_IMAGE }}:${{ github.ref_name }},${{ env.REGISTRY_IMAGE }}:latest" >> $GITHUB_ENV
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v5
with:
context: ./
platforms: linux/amd64,linux/arm/v7,linux/arm64
push: true
tags: ${{ env.REGISTRY_IMAGE_TAG }}