Files
ssh/.gitea/workflows/ssh-client-build-deploy.yaml
T
Márcio Fernandes 9bd367ac8f
/ ssh-client-container-build-push (push) Successful in 16s
/ ssh-server-container-build-push (push) Successful in 2m8s
moved containers to oci.limbosolutions.com
2026-05-03 01:03:44 +00:00

37 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-container-build-push:
runs-on: ["oci-image-builder", "amd64"]
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: oci.limbosolutions.com/public/ssh-client:latest
registry_addr: ${{ vars.OCI_LIMBO_REGISTRY_ADDRESS }}
registry_username: ${{ secrets.OCI_LIMBO_REGISTRY_USERNAME }}
registry_password: ${{ secrets.OCI_LIMBO_REGISTRY_PASSWORD }}
buildkit_addr: ${{ vars.BUILDKIT_ADDRESS }}
dockerfile: ${{gitea.workspace}}/docker/ssh-client
context: ${{gitea.workspace}}/docker/ssh-client