Some checks failed
CI / Build Jupyter Sage docker images (push) Failing after 10s
32 lines
929 B
YAML
32 lines
929 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
paths:
|
|
- 'jupyter-sage/*'
|
|
- '.gitea/workflows/build-jupyter-sage.yaml'
|
|
jobs:
|
|
"Build Jupyter Sage docker images":
|
|
runs-on: woryzen
|
|
steps:
|
|
-
|
|
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-sage image
|
|
uses: docker/build-push-action@v5.3.0
|
|
with:
|
|
builder: multiplatform-builder
|
|
context: "{{defaultContext}}:jupyter-sage"
|
|
platforms: linux/amd64
|
|
push: true
|
|
build-args: "VERSION=10.8"
|
|
ssh: default=/home/luser/.ssh/id_ed25519
|
|
tags: |
|
|
gitea.woggioni.net/woggioni/jupyter-sage:latest
|
|
gitea.woggioni.net/woggioni/jupyter-sage:10.8
|