Skip to content

Merge pull request #31 from vim/feature/deployment-vm #51

Merge pull request #31 from vim/feature/deployment-vm

Merge pull request #31 from vim/feature/deployment-vm #51

name: Build and Push CMS Docker Image
on:
push:
branches:
- main
- development
- 'feature/**'
jobs:
push_to_registries:
name: Push Docker image to GHCR
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Log in to the Container registry
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@f7b4ed12385588c3f9bc252f0a2b520d83b52d48
with:
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
images: |
ghcr.io/${{ github.repository }}/cms
- name: Build and push Docker images
uses: docker/build-push-action@ca052bb54ab0790a636c9b5f226502c73d547a25
with:
context: ./cms
file: ./cms/Dockerfile.prod
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
build-args: CMS_URL=${{vars.CMS_URL}}