From c26931006e12c11250bae0dd55aae6e3b74481a9 Mon Sep 17 00:00:00 2001 From: Adir111 Date: Thu, 18 Jul 2024 19:01:16 +0300 Subject: [PATCH] removed test changes --- .github/workflows/testing_domain_secret.yml | 38 --------------------- deploy.sh | 1 - 2 files changed, 39 deletions(-) delete mode 100644 .github/workflows/testing_domain_secret.yml diff --git a/.github/workflows/testing_domain_secret.yml b/.github/workflows/testing_domain_secret.yml deleted file mode 100644 index a97dcd2..0000000 --- a/.github/workflows/testing_domain_secret.yml +++ /dev/null @@ -1,38 +0,0 @@ -# This is a basic workflow to help you get started with Actions - -name: CI-MAIN - -# Controls when the action will run. -on: - # Allows you to run this workflow manually from the Actions tab - push: - branches: [Devops_Feature_ImproveDeploymentCI] - workflow_dispatch: -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - deploy: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - - name: create kubeconfig - run: | - echo "$KUBE_CONFIG_DATA" | base64 --decode > /tmp/config - chmod go-r /tmp/config - echo KUBECONFIG=/tmp/config >> $GITHUB_ENV - env: - KUBE_CONFIG_DATA: ${{ secrets.CICD_KUBECONFIG }} - - name: verify kubectl - run: kubectl cluster-info - - name: deploy - run: ./deploy.sh ${{ secrets.HKUBE_DOMAIN_RAW }} - env: - DOCKER_BUILD_PUSH_PASSWORD: ${{ secrets.DOCKER_BUILD_PUSH_PASSWORD }} - DOCKER_BUILD_PUSH_USERNAME: ${{ secrets.DOCKER_BUILD_PUSH_USERNAME }} - VERSION: ${{ github.event.client_payload.version || github.event.inputs.version }} - - name: testFinish - run: echo Test End \ No newline at end of file diff --git a/deploy.sh b/deploy.sh index f3ff674..f21a869 100755 --- a/deploy.sh +++ b/deploy.sh @@ -41,4 +41,3 @@ else fi helm ls --all -echo Script End \ No newline at end of file