Add another one
Some checks failed
/ macless-haystack-web (push) Failing after 43s
/ fatssh (push) Successful in 5m9s
/ rsync-faircamp (push) Successful in 2m41s

This commit is contained in:
Martyn 2025-09-23 13:39:14 +02:00
parent 5bc93ba132
commit 2480e81885
2 changed files with 32 additions and 0 deletions

View file

@ -34,6 +34,35 @@ jobs:
push: true push: true
file: Dockerfile.fat-ssh file: Dockerfile.fat-ssh
tags: git.martyn.berlin/martyn/fat-ssh:latest tags: git.martyn.berlin/martyn/fat-ssh:latest
rsync-faircamp:
runs-on: docker
container: catthehacker/ubuntu:act-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Create Kubeconfig
run: |
mkdir $HOME/.kube
echo "${{ secrets.KUBECONFIG_BUILDX }}" > $HOME/.kube/config
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.6.1
with:
driver: kubernetes
driver-opts: |
namespace=git
qemu.install=false
- name: Login to forgejo
uses: docker/login-action@v3
with:
registry: git.martyn.berlin
username: martyn
password: ${{ secrets.PUSH_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
file: Dockerfile.fat-ssh
tags: git.martyn.berlin/martyn/rsync-faircamp:latest
macless-haystack-web: macless-haystack-web:
runs-on: docker runs-on: docker
container: catthehacker/ubuntu:act-latest container: catthehacker/ubuntu:act-latest

View file

@ -0,0 +1,3 @@
FROM debian:13
RUN apt update && apt install faircamp rsync -y