From 60f2adba8593841b8d263cc846b6f6f21e5b233c Mon Sep 17 00:00:00 2001 From: Ravencodess <115118888+Ravencodess@users.noreply.github.com> Date: Tue, 29 Oct 2024 14:18:56 +0100 Subject: [PATCH] Delete .github/workflows/team-deployment.yml Signed-off-by: Ravencodess <115118888+Ravencodess@users.noreply.github.com> --- .github/workflows/team-deployment.yml | 142 -------------------------- 1 file changed, 142 deletions(-) delete mode 100644 .github/workflows/team-deployment.yml diff --git a/.github/workflows/team-deployment.yml b/.github/workflows/team-deployment.yml deleted file mode 100644 index 1eed13552..000000000 --- a/.github/workflows/team-deployment.yml +++ /dev/null @@ -1,142 +0,0 @@ -name: Team Deployment - -on: - workflow_dispatch: - # workflow_run: - # workflows: ["Build and Upload"] - # types: - # - completed - -jobs: - kimiko-golang: - if: ${{ github.event.workflow_run.conclusion == 'success' }} - runs-on: ubuntu-latest - - environment: - name: "kimiko-golang" - url: ${{ vars.URL }} - - steps: - - name: Deploy to kimiko-golang environment - uses: appleboy/ssh-action@v1.0.3 - with: - host: ${{ secrets.HOST }} - username: ${{ secrets.USERNAME }} - password: ${{ secrets.PASSWORD }} - script: | - cd hng_boilerplate_nextjs - ./scripts/team_deploy.sh kimiko-golang ${{ vars.PORT }} - - kimiko-csharp: - if: ${{ github.event.workflow_run.conclusion == 'success' }} - runs-on: ubuntu-latest - - environment: - name: "kimiko-csharp" - url: ${{ vars.URL }} - - steps: - - name: Deploy to kimiko-csharp environment - uses: appleboy/ssh-action@v1.0.3 - with: - host: ${{ secrets.HOST }} - username: ${{ secrets.USERNAME }} - password: ${{ secrets.PASSWORD }} - script: | - cd hng_boilerplate_nextjs - ./scripts/team_deploy.sh kimiko-csharp ${{ vars.PORT }} - - anchor-java: - if: ${{ github.event.workflow_run.conclusion == 'success' }} - runs-on: ubuntu-latest - - environment: - name: "anchor-java" - url: ${{ vars.URL }} - - steps: - - name: Deploy to anchor-java environment - uses: appleboy/ssh-action@v1.0.3 - with: - host: ${{ secrets.HOST }} - username: ${{ secrets.USERNAME }} - password: ${{ secrets.PASSWORD }} - script: | - cd hng_boilerplate_nextjs - ./scripts/team_deploy.sh anchor-java ${{ vars.PORT }} - - anchor-python: - if: ${{ github.event.workflow_run.conclusion == 'success' }} - runs-on: ubuntu-latest - - environment: - name: "anchor-python" - url: ${{ vars.URL }} - - steps: - - name: Deploy to anchor-python environment - uses: appleboy/ssh-action@v1.0.3 - with: - host: ${{ secrets.HOST }} - username: ${{ secrets.USERNAME }} - password: ${{ secrets.PASSWORD }} - script: | - cd hng_boilerplate_nextjs - ./scripts/team_deploy.sh anchor-python ${{ vars.PORT }} - - bulldozer-php: - if: ${{ github.event.workflow_run.conclusion == 'success' }} - runs-on: ubuntu-latest - - environment: - name: "bulldozer-php" - url: ${{ vars.URL }} - - steps: - - name: Deploy to bulldozer-php environment - uses: appleboy/ssh-action@v1.0.3 - with: - host: ${{ secrets.HOST }} - username: ${{ secrets.USERNAME }} - password: ${{ secrets.PASSWORD }} - script: | - cd hng_boilerplate_nextjs - ./scripts/team_deploy.sh bulldozer-php ${{ vars.PORT }} - - starlight-nestjs: - if: ${{ github.event.workflow_run.conclusion == 'success' }} - runs-on: ubuntu-latest - - environment: - name: "starlight-nestjs" - url: ${{ vars.URL }} - - steps: - - name: Deploy to starlight-nestjs environment - uses: appleboy/ssh-action@v1.0.3 - with: - host: ${{ secrets.HOST }} - username: ${{ secrets.USERNAME }} - password: ${{ secrets.PASSWORD }} - script: | - cd hng_boilerplate_nextjs - ./scripts/team_deploy.sh starlight-nestjs ${{ vars.PORT }} - - panther-expressjs: - if: ${{ github.event.workflow_run.conclusion == 'success' }} - runs-on: ubuntu-latest - - environment: - name: "panther-expressjs" - url: ${{ vars.URL }} - - steps: - - name: Deploy to panther-expressjs environment - uses: appleboy/ssh-action@v1.0.3 - with: - host: ${{ secrets.HOST }} - username: ${{ secrets.USERNAME }} - password: ${{ secrets.PASSWORD }} - script: | - cd hng_boilerplate_nextjs - ./scripts/team_deploy.sh panther-expressjs ${{ vars.PORT }}