25 lines
650 B
YAML
25 lines
650 B
YAML
name: CI
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
jobs:
|
|
build:
|
|
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 rbcs Docker image
|
|
uses: docker/build-push-action@v5.3.0
|
|
with:
|
|
platforms: linux/amd64
|
|
push: true
|
|
pull: true
|
|
tags: |
|
|
gitea.woggioni.net/woggioni/intrasys:latest
|
|
cache-from: type=registry,ref=gitea.woggioni.net/woggioni/intrasys:buildx
|