From d398e99234df9a26c51fa7170c463caf4a27f7ab Mon Sep 17 00:00:00 2001 From: lukachi Date: Wed, 13 Mar 2024 14:21:11 +0200 Subject: [PATCH] fix workflow tag file --- .github/workflows/tag.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 7eb2dc8..cae9f03 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -34,18 +34,18 @@ jobs: . $(werf ci-env github --as-file) werf export --dev web --tag ghcr.io/$GITHUB_REPOSITORY:$GITHUB_REF_NAME -deploy: - name: Deploy - needs: converge - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: ConfigCreate - run: | - mkdir ~/.kube/ - echo "${{ secrets.K8SCONFIG_MAIN }}" | base64 -d > config - mv config ~/.kube/ - kubectl set image deployment webclient template=ghcr.io/$GITHUB_REPOSITORY:$GITHUB_REF_NAME -n worldcoin + deploy: + name: Deploy + needs: converge + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + with: + fetch-depth: 0 + - name: ConfigCreate + run: | + mkdir ~/.kube/ + echo "${{ secrets.K8SCONFIG_MAIN }}" | base64 -d > config + mv config ~/.kube/ + kubectl set image deployment webclient template=ghcr.io/$GITHUB_REPOSITORY:$GITHUB_REF_NAME -n worldcoin