Files
ssh/.gitea/workflows/ssh-client-build-deploy.yaml
Márcio Fernandes 1b6f3ab407
Some checks are pending
/ ssh-client (push) Waiting to run
modified: .gitea/workflows/ssh-client-build-deploy.yaml
2026-03-16 02:01:10 +00:00

37 lines
954 B
YAML

on:
push:
paths:
- "docker/ssh-client/**"
- ".gitea/workflows/ssh-client**"
schedule:
- cron: "0 15 * * 6" #every Saturday at 3:00 PM,
jobs:
ssh-client:
runs-on: ["oci-image-builder", "amd64"]
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: .