Files
robin-docker/.gitea/workflows/build.yaml
Alex 1e05ed2d16
All checks were successful
Build Container / publish (push) Successful in 10s
added workflow dispatch
2025-11-18 18:07:40 +01:00

28 lines
567 B
YAML

name: Build Container
on:
push:
branches: [main]
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Clone robin
run: |
git clone https://github.com/apurvsinghgautam/robin
cd robin
ls -al
- name: Build Docker image
run: |
cd robin
docker build -t docker.central.nu/alex/robin:latest .
- name: Push Docker image
run: |
docker push docker.central.nu/alex/robin:latest