Files
ssh/.gitea/workflows/ssh-client-build-deploy.yaml
Márcio Fernandes bdae578580
Some checks failed
/ ssh-client (push) Has been cancelled
/ ssh-server (push) Has been cancelled
modified: .gitea/workflows/ssh-client-build-deploy.yaml
modified:   .gitea/workflows/ssh-server-build-deploy.yaml
2026-03-16 01:55:30 +00:00

38 lines
938 B
YAML

on:
push:
paths:
- "docker/ssh-client/**"
- ".gitea/workflows/ssh-client**"
schedule:
- cron: "0 14 * * 6" #every Saturday at 2:00 PM,
jobs:
ssh-client:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{gitea.workspace}}docker/ssh-client
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build and push ssh-client container images
id: push
uses: docker/build-push-action@v6
with:
tags: git.limbosolutions.com/kb/ssh-client
registry_addr: ${{ vars.GITLIMBO_DOCKER_REGISTRY_ADDRESS }}
registry_username: ${{ secrets.GITLIMBO_DOCKER_REGISTRY_USERNAME }}
registry_password: ${{ secrets.GITLIMBO_DOCKER_REGISTRY_PASSWORD }}
buildkit_addr: ${{ vars.BUILDKIT_ADDRESS }}
dockerfile: ${{gitea.workspace}}/docker/ssh-client
context: .