From 75994aa062c0e7c5998575a43290d72848db2bb6 Mon Sep 17 00:00:00 2001 From: Dominik Hodan Date: Thu, 7 Nov 2024 16:04:02 +0100 Subject: [PATCH] Update auto-deploy.yml --- .github/workflows/auto-deploy.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-deploy.yml b/.github/workflows/auto-deploy.yml index 10ba40f..ee7c775 100644 --- a/.github/workflows/auto-deploy.yml +++ b/.github/workflows/auto-deploy.yml @@ -16,7 +16,6 @@ defaults: jobs: build: runs-on: ubuntu-latest - strategy: matrix: node-version: [14.6] @@ -32,6 +31,8 @@ jobs: cache-dependency-path: web/package-lock.json - run: npm ci - run: npm run build --if-present + env: + CI: false - name: Deploy run: | git config --global user.name $user_name @@ -39,6 +40,7 @@ jobs: git remote set-url origin https://${github_token}@github.com/${repository} npm run deploy env: + CI: false user_name: 'github-actions[bot]' user_email: 'github-actions[bot]@users.noreply.github.com' github_token: ${{ secrets.ACTIONS_DEPLOY_ACCESS_TOKEN }}