k8sdeploy/action.yaml
2024-05-02 17:27:39 +02:00

20 lines
530 B
YAML

inputs:
kubeconfig:
description: kubeconfig file
required: true
registry_username:
description: Registry username
default: ${{ gitea.repository_owner }}
registry_password:
description: Registry password
runs:
using: composite
steps:
- name: k8sdeploy
run: ${{ gitea.action_path }}/k8sdeploy.sh
env:
ACTION_KUBECONFIG: ${{ inputs.kubeconfig }}
ACTION_REGISTRY_USERNAME: ${{ inputs.registry_username }}
ACTION_REGISTRY_PASSWORD: ${{ inputs.registry_password }}