From 63556c3f38540fa8c0880f407d7441713b489498 Mon Sep 17 00:00:00 2001 From: Michael Beckemeyer Date: Tue, 26 Sep 2023 12:08:21 +0200 Subject: [PATCH] Temporarily disable deployments --- .github/workflows/test-and-build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index 19e0113..a79f6a5 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -44,10 +44,11 @@ jobs: - name: Upload artifact uses: actions/upload-artifact@v3 + if: false with: name: build path: dist/ - + call_version: if: github.ref == 'refs/heads/main' name: "Publish or create version PR" @@ -55,11 +56,11 @@ jobs: needs: test secrets: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - + deploy: runs-on: ubuntu-latest needs: test - if: github.ref == 'refs/heads/main' + if: false && github.ref == 'refs/heads/main' steps: - name: Checkout uses: actions/checkout@v3