Files
ssh/.gitea/workflows/ssh-client-build-deploy.yaml
T
Márcio Fernandes 6edddbd090
/ ssh-client-container-build-push (push) Successful in 15s
modified: .gitea/actions/buildkit-build-push-dev/action.yaml
modified:   .gitea/workflows/ssh-client-build-deploy.yaml
2026-05-03 00:49:06 +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/actions/buildkit-build-push-dev
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