Files
ssh/.gitea/workflows/ssh-client-build-deploy.yaml
Márcio Fernandes cc1d168ea7
Some checks failed
/ ssh-client (push) Failing after 15s
modified: .gitea/workflows/ssh-client-build-deploy.yaml
2026-03-16 04:57:35 +00:00

43 lines
1.2 KiB
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: ["oci-image-builder", "amd64"]
defaults:
run:
working-directory: ${{gitea.workspace}}docker/ssh-client
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Fetch limbo public actions
env:
RUNNER_TEMP: "${{ runner.temp }}"
WORKSPACE: "${{ gitea.workspace }}"
run: |
curl -fsSL https://git.limbosolutions.com/kb/gitea/raw/branch/main/cloud-scripts/setup-limbo-actions.sh | bash 2>&1
- name: Build and push ssh-client container images
uses: ./.gitea/limbo_actions/buildkit-build-push
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: .