Skip to content

added new and improved content types #37

added new and improved content types

added new and improved content types #37

Workflow file for this run

name: Build Moving Cities CMS
on:
push:
branches: [ v2 ]
workflow_dispatch:
branches: [ main, v2 ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to Docker Registry
uses: docker/login-action@v1
with:
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
-
name: Build and Push the Image to the Registry
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ secrets.REGISTRY_PATH }}:${{ github.sha }}