All checks were successful
CI / Build docker images (push) Successful in 6m17s
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
jobs:
|
|
"Build docker images":
|
|
runs-on: woryzen
|
|
steps:
|
|
-
|
|
name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver: docker
|
|
-
|
|
name: Login to Gitea container registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: gitea.woggioni.net
|
|
username: woggioni
|
|
password: ${{ secrets.PUBLISHER_TOKEN }}
|
|
-
|
|
name: Build and push jupyter-python image
|
|
uses: docker/build-push-action@v5.3.0
|
|
with:
|
|
context: "{{defaultContext}}:jupyter-python"
|
|
platforms: linux/amd64
|
|
push: true
|
|
tags: gitea.woggioni.net/woggioni/jupyter-python:latest
|
|
-
|
|
name: Build and push jupyter-ganymede image
|
|
uses: docker/build-push-action@v5.3.0
|
|
with:
|
|
context: "{{defaultContext}}:jupyter-ganymede"
|
|
platforms: linux/amd64
|
|
push: true
|
|
tags: gitea.woggioni.net/woggioni/jupyter-ganymede:latest
|