ssh server alpha
Some checks failed
/ build-docker-image (push) Failing after 23s

This commit is contained in:
2025-09-06 23:32:31 +00:00
parent ea24e0e41a
commit f6e6d4dba9
20 changed files with 643 additions and 4 deletions

View File

@@ -0,0 +1,37 @@
on:
push:
paths:
- "docker/**"
- ".gitea/**"
schedule:
- cron: "0 02 * * *"
jobs:
build-docker-image:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Log in to git.limbosolutions.com docker registry
uses: docker/login-action@v3
with:
registry: git.limbosolutions.com
username: ${{ secrets.GITLIMBO_DOCKER_REGISTRY_USERNAME }}
password: ${{ secrets.GITLIMBO_DOCKER_REGISTRY_PASSWORD }}
- name: Build and push ssh-client Docker images
id: push
uses: docker/build-push-action@v6
with:
context: .
file: ${{gitea.workspace}}/docker/ssh-client/Dockerfile
push: true
tags: git.limbosolutions.com/kb/ssh-client
- name: Build ssh-server images
run: |
cd ${{gitea.workspace}}/ssh-server
BUILD_ENV=prod ./scripts/build.sh