Skip to content

Commit

Permalink
add github actions workflow to build docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
darrylong committed Nov 30, 2023
1 parent e0c4f0d commit 0bac6d9
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/image-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: Publish Container Image

on:
push:
tags:
- '*'
workflow_dispatch:

jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Prepare
id: prep
run: |
TIME=$(date +%s)
VERSION=dev-$TIME
if [[ $GITHUB_REF == refs/tags/* ]]; then
VERSION=${GITHUB_REF#refs/tags/}
VERSION="${VERSION:1}"
fi
IMAGE="registry.preferred.ai/cornac/cornac-server"
echo ::set-output name=tagged_image::${IMAGE}:${VERSION},${IMAGE}:latest
shell: bash

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Buildx
id: buildx
uses: docker/setup-buildx-action@v3

- name: Login to registry
uses: docker/login-action@v3
with:
registry: registry.preferred.ai
username: ${{ secrets.PREFERRED_REGISTRY_USERNAME }}
password: ${{ secrets.PREFERRED_REGISTRY_PASSWORD }}

- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.prep.outputs.tagged_image }}
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit 0bac6d9

Please sign in to comment.