Skip to content

Upgrade to runtime 0.1.0 #26

Upgrade to runtime 0.1.0

Upgrade to runtime 0.1.0 #26

Workflow file for this run

name: docker pr
on:
push:
branches-ignore:
- "main"
env:
IMAGE_FQDN: ghcr.io/eugenmayer/kontextwork-converter
BASE_IMAGE_VERSION: 0.1.0
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 production
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
target: production
push: false
tags: |
${{ env.IMAGE_FQDN }}:latest
build-args: |
VERSION=0.0.1-snapshot
BASE_IMAGE_VERSION=${{ env.BASE_IMAGE_VERSION }}
- name: Build dev
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
target: development
push: false
tags: |
${{ env.IMAGE_FQDN }}:latest
build-args: |
VERSION=0.0.1-snapshot
BASE_IMAGE_VERSION=${{ env.BASE_IMAGE_VERSION }}