84 lines
2.3 KiB
YAML
84 lines
2.3 KiB
YAML
name: dockerbuild
|
|
|
|
on:
|
|
push:
|
|
branches: launch
|
|
jobs:
|
|
main:
|
|
runs-on: ubuntu-latest
|
|
continue-on-error: ${{ matrix.experimental }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- app: frontend
|
|
path: frontend
|
|
version: nightly
|
|
experimental: true
|
|
- app: backend
|
|
path: backend
|
|
version: nightly
|
|
experimental: true
|
|
- app: app_sdk
|
|
path: backend/app_sdk
|
|
version: nightly
|
|
experimental: true
|
|
- app: orborus
|
|
path: functions/onprem/orborus
|
|
version: nightly
|
|
experimental: true
|
|
#- app: worker
|
|
# path: functions/onprem/worker
|
|
# version: nightly
|
|
# experimental: true
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Dockerhub Build and push
|
|
id: docker_build_dockerhub
|
|
uses: docker/build-push-action@v2
|
|
env:
|
|
BUILDX_NO_DEFAULT_LOAD: true
|
|
with:
|
|
context: ${{ matrix.path }}/
|
|
file: ${{ matrix.path }}/Dockerfile
|
|
platforms: linux/amd64,linux/arm64
|
|
#,linux/386 - no node image I guess?
|
|
push: true
|
|
tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{ matrix.app }}:nightly
|
|
|
|
#- name: Login to Ghcr
|
|
# uses: docker/login-action@v2
|
|
# with:
|
|
# registry: ghcr.io
|
|
# username: frikky
|
|
# password: ${{ secrets.GHCR_PW }}
|
|
|
|
#- name: Ghcr Build and push
|
|
# id: docker_build
|
|
# uses: docker/build-push-action@v2
|
|
# env:
|
|
# BUILDX_NO_DEFAULT_LOAD: true
|
|
# with:
|
|
# context: ${{ matrix.path }}/
|
|
# file: ${{ matrix.path }}/Dockerfile
|
|
# platforms: linux/amd64,linux/arm64
|
|
# push: true
|
|
# tags: frikky/shuffle-${{ matrix.app }}:nightly
|
|
|
|
- name: Image digest
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|