From 6917d81e7b7ea6abc1636953da25f142d8ff63b0 Mon Sep 17 00:00:00 2001 From: "multirepo-manager[bot]" <120337333+multirepo-manager[bot]@users.noreply.github.com> Date: Sun, 5 Nov 2023 23:52:18 +0000 Subject: [PATCH] sync: synced local '.github/workflows/deploy.yaml' with remote '.github/workflows/deploy.yaml' --- .github/workflows/deploy.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 0a137bc..a631f41 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -18,7 +18,7 @@ jobs: SSH_GITHUB_KEY: ${{ secrets.SSH_GITHUB_KEY }} build: runs-on: ubuntu-latest - if: github.event.repository.name != 'main' + if: github.event.repository.name != 'main' && github.event.repository.name != 'template-service' needs: [test] steps: - name: Login to GitLab @@ -38,7 +38,7 @@ jobs: matrix: node-version: [18.x] runs-on: ubuntu-latest - if: github.event.repository.name != 'main' + if: github.event.repository.name != 'main' && github.event.repository.name != 'template-service' needs: [test, build] steps: - uses: actions/checkout@v3 @@ -46,6 +46,12 @@ jobs: uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} + - name: Install SSH key + uses: shimataro/ssh-key-action@v2 + continue-on-error: true + with: + known_hosts: unnecessary + key: ${{ secrets.SSH_GITHUB_KEY }} - name: Setup Helm uses: azure/setup-helm@v3 with: