Add another one
This commit is contained in:
parent
5bc93ba132
commit
2480e81885
2 changed files with 32 additions and 0 deletions
|
@ -34,6 +34,35 @@ jobs:
|
|||
push: true
|
||||
file: Dockerfile.fat-ssh
|
||||
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:
|
||||
runs-on: docker
|
||||
container: catthehacker/ubuntu:act-latest
|
||||
|
|
3
Dockerfile.rsync-faircamp
Normal file
3
Dockerfile.rsync-faircamp
Normal file
|
@ -0,0 +1,3 @@
|
|||
FROM debian:13
|
||||
|
||||
RUN apt update && apt install faircamp rsync -y
|
Loading…
Add table
Reference in a new issue