From da0fd06d52d0f286d2bffd1d058adb90b06950ab Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Wed, 7 Feb 2024 07:36:02 +0000 Subject: [PATCH] Add CI workflow This commit adds the CI workflow for building and uploading `heat-container-agent` Docker image. Signed-off-by: Stephanos Ioannidis --- .github/workflows/ci.yml | 57 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..19ee10f --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,57 @@ +name: CI + +on: + push: + branches: [ main ] + tags: [ '*' ] + pull_request: + branches: [ main ] + +permissions: + packages: write + +concurrency: + group: ${{ github.ref }} + cancel-in-progress: true + +jobs: + build: + name: Build + runs-on: ubuntu-22.04 + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + submodules: recursive + + - name: Generate metadata + id: meta + uses: docker/metadata-action@v4 + with: + images: | + ghcr.io/centrinix/heat-container-agent + + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + + - name: Login to GitHub Container Registry + if: ${{ github.event_name != 'pull_request' }} + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + context: . + file: magnum/dockerfiles/heat-container-agent/Dockerfile + platforms: linux/amd64,linux/arm64 + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }}