init
All checks were successful
Build Container / publish (push) Successful in 2m59s

This commit is contained in:
Alex
2025-11-18 18:02:45 +01:00
commit d7f6ebd3fd

View File

@@ -0,0 +1,27 @@
name: Build Container
on:
push:
branches: [main]
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