2023-03-19 22:50:31 +00:00
|
|
|
---
|
|
|
|
name: 'build container images'
|
|
|
|
|
|
|
|
on:
|
2023-04-12 23:16:13 +00:00
|
|
|
pull_request:
|
2023-03-19 22:50:31 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
tags:
|
|
|
|
- '*'
|
|
|
|
|
2023-05-19 06:31:11 +00:00
|
|
|
concurrency:
|
|
|
|
group: ci-${{ github.head_ref || github.ref }}-${{ github.repository }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-03-19 22:50:31 +00:00
|
|
|
jobs:
|
|
|
|
docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2023-04-12 23:13:14 +00:00
|
|
|
|
2023-03-19 22:50:31 +00:00
|
|
|
- name: Prepare
|
|
|
|
id: prep
|
|
|
|
run: |
|
2023-04-19 16:43:10 +00:00
|
|
|
DOCKER_IMAGE=quay.io/go-skynet/local-ai
|
2023-04-12 23:13:14 +00:00
|
|
|
VERSION=master
|
2023-03-19 22:50:31 +00:00
|
|
|
SHORTREF=${GITHUB_SHA::8}
|
2023-04-12 23:13:14 +00:00
|
|
|
|
2023-03-19 22:50:31 +00:00
|
|
|
# If this is git tag, use the tag name as a docker tag
|
|
|
|
if [[ $GITHUB_REF == refs/tags/* ]]; then
|
|
|
|
VERSION=${GITHUB_REF#refs/tags/}
|
|
|
|
fi
|
|
|
|
TAGS="${DOCKER_IMAGE}:${VERSION},${DOCKER_IMAGE}:${SHORTREF}"
|
2023-04-12 23:13:14 +00:00
|
|
|
|
2023-03-19 22:50:31 +00:00
|
|
|
# If the VERSION looks like a version number, assume that
|
|
|
|
# this is the most recent version of the image and also
|
|
|
|
# tag it 'latest'.
|
2023-04-12 23:37:09 +00:00
|
|
|
if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
|
2023-03-19 22:50:31 +00:00
|
|
|
TAGS="$TAGS,${DOCKER_IMAGE}:latest"
|
|
|
|
fi
|
2023-04-12 23:13:14 +00:00
|
|
|
|
2023-03-19 22:50:31 +00:00
|
|
|
# Set output parameters.
|
|
|
|
echo ::set-output name=tags::${TAGS}
|
|
|
|
echo ::set-output name=docker_image::${DOCKER_IMAGE}
|
2023-04-12 23:13:14 +00:00
|
|
|
|
2023-03-19 22:50:31 +00:00
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@master
|
|
|
|
with:
|
|
|
|
platforms: all
|
2023-04-12 23:13:14 +00:00
|
|
|
|
2023-03-19 22:50:31 +00:00
|
|
|
- name: Set up Docker Buildx
|
|
|
|
id: buildx
|
|
|
|
uses: docker/setup-buildx-action@master
|
2023-04-12 23:13:14 +00:00
|
|
|
|
2023-03-19 22:50:31 +00:00
|
|
|
- name: Login to DockerHub
|
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/login-action@v2
|
|
|
|
with:
|
|
|
|
registry: quay.io
|
2023-05-02 18:03:35 +00:00
|
|
|
username: ${{ secrets.LOCALAI_REGISTRY_USERNAME }}
|
|
|
|
password: ${{ secrets.LOCALAI_REGISTRY_PASSWORD }}
|
2023-04-12 23:16:13 +00:00
|
|
|
- name: Build
|
2023-04-12 23:13:14 +00:00
|
|
|
if: github.event_name != 'pull_request'
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
2023-04-12 23:21:40 +00:00
|
|
|
platforms: linux/amd64,linux/arm64
|
2023-04-12 23:13:14 +00:00
|
|
|
push: true
|
|
|
|
tags: ${{ steps.prep.outputs.tags }}
|
2023-04-12 23:16:13 +00:00
|
|
|
- name: Build PRs
|
2023-04-12 23:13:14 +00:00
|
|
|
if: github.event_name == 'pull_request'
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
|
|
|
builder: ${{ steps.buildx.outputs.name }}
|
|
|
|
context: .
|
|
|
|
file: ./Dockerfile
|
|
|
|
platforms: linux/amd64
|
|
|
|
push: false
|
|
|
|
tags: ${{ steps.prep.outputs.tags }}
|