Skip to content

Update to runtime 0.1.6 #27

Update to runtime 0.1.6

Update to runtime 0.1.6 #27

Workflow file for this run

name: docker
on:
push:
env:
IMAGE_FQDN: ghcr.io/jodconverter/jodconverter-examples
BASE_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 gui
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
push: false
target: gui
build-args: |
BASE_VERSION=${{ env.BASE_VERSION }}
tags: |
${{ env.IMAGE_FQDN }}:gui
- name: Build rest
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64
push: false
target: rest
build-args: |
BASE_VERSION=${{ env.BASE_VERSION }}
tags: |
${{ env.IMAGE_FQDN }}:rest
- name: Push REST
uses: docker/build-push-action@v3
if: startsWith(github.ref, 'refs/tags/')
with:
context: .
platforms: linux/amd64
target: rest
build-args: |
BASE_VERSION=${{ env.BASE_VERSION }}
push: true
tags: |
${{ env.IMAGE_FQDN }}:rest
${{ env.IMAGE_FQDN }}:rest-${{ github.ref_name }}
- name: Push GUI
uses: docker/build-push-action@v3
if: startsWith(github.ref, 'refs/tags/')
with:
context: .
platforms: linux/amd64
target: gui
build-args: |
BASE_VERSION=${{ env.BASE_VERSION }}
push: true
tags: |
${{ env.IMAGE_FQDN }}:gui
${{ env.IMAGE_FQDN }}:gui-${{ github.ref_name }}