feat(4.9): release v4.9 (37a4e9bb608b8dfbca192603a86dde77c665a6cf) #160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Publish Docker | |
on: | |
push: | |
branches: | |
- support-4.9 | |
jobs: | |
build_and_push: | |
runs-on: ubuntu-latest | |
env: | |
IMAGE_NAME: midpoint-builder | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v1 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Prepare Image Tag | |
id: prep | |
run: | | |
BASE_IMAGE_TAG=`grep "ARG BASE_IMAGE_TAG" Dockerfile | cut -d "=" -f 2 | sed "s/^v//" | head -n 1` | |
RELEASE_REVISION=`grep "ARG RELEASE_REVISION" Dockerfile | cut -d "=" -f 2` | |
IMAGE_TAG=${BASE_IMAGE_TAG}-${RELEASE_REVISION} | |
FULL_IMAGE_NAME=ghcr.io/${{ github.repository_owner }}/${IMAGE_NAME} | |
echo "Building $FULL_IMAGE_NAME:$IMAGE_TAG" | |
echo ::set-output name=name::${FULL_IMAGE_NAME} | |
echo ::set-output name=tag::${IMAGE_TAG} | |
- name: Build and push | |
uses: docker/build-push-action@v2 | |
with: | |
push: true | |
tags: ${{ steps.prep.outputs.name }}:${{ steps.prep.outputs.tag }} | |
cache-from: type=registry,ref=${{ steps.prep.outputs.name }}:support-4.9 | |
cache-to: type=registry,ref=${{ steps.prep.outputs.name }}:support-4.9,mode=max | |