Upgrade runtime to 0.1.6 to include the font-cache fix #7
Workflow file for this run
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: docker publish | |
on: | |
push: | |
tags: | |
- '*' | |
env: | |
IMAGE_FQDN: ghcr.io/eugenmayer/kontextwork-converter | |
RUNTIME_VERSION: 0.1.6 | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Login to GHCR | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ github.token }} | |
- name: Build and publish production | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64 | |
push: true | |
target: production | |
tags: | | |
${{ env.IMAGE_FQDN }}:${{ github.ref_name }} | |
${{ env.IMAGE_FQDN }}:production-${{ github.ref_name }} | |
${{ env.IMAGE_FQDN }}:production | |
build-args: | | |
VERSION=${{ github.ref_name }} | |
RUNTIME_VERSION=${{ env.RUNTIME_VERSION }} | |
- name: Build and publish development | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
platforms: linux/amd64 | |
push: true | |
target: development | |
tags: | | |
${{ env.IMAGE_FQDN }}:development | |
${{ env.IMAGE_FQDN }}:development-${{ github.ref_name }} | |
build-args: | | |
VERSION=${{ github.ref_name }} | |
RUNTIME_VERSION=${{ env.RUNTIME_VERSION }} |