From 3e6ba868f13ceb2017240cf7a184b6224c089b55 Mon Sep 17 00:00:00 2001 From: folland87 Date: Tue, 22 Oct 2024 17:01:37 +0200 Subject: [PATCH] test deployment --- .github/actions/k8s-deploy/action.yml | 4 ++-- .github/workflows/deploy.yml | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/actions/k8s-deploy/action.yml b/.github/actions/k8s-deploy/action.yml index 2aead9e..7682983 100644 --- a/.github/actions/k8s-deploy/action.yml +++ b/.github/actions/k8s-deploy/action.yml @@ -30,10 +30,10 @@ inputs: required: true docker_password: description: "Base64 encoded kubeconfig file" - default: ${{ secrets.GITHUB_TOKEN }} + required: true docker_username: description: "Base64 encoded kubeconfig file" - default: ${{ github.actor }} + required: true env_secrets: description: "Base64 encoded .env file containing secrets" required: false diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7cb5b16..d31d6f0 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,6 +20,8 @@ jobs: memory_request: 128Mi memory_limit: 256Mi kube_config: ${{ secrets.KUBE_CONFIG_DOAD_STAGING }} + docker_username: ${{ github.actor }} + docker_password: ${{ secrets.GITHUB_TOKEN}} # env_secrets: ${{ secrets.MAIN_ENV_SECRETS }} - name: Get deployment URL run: echo "Deployed to ${{ steps.deploy.outputs.deployment_url }}"