From 39905dc94cef842bbea0091a970e9f7998f6ff60 Mon Sep 17 00:00:00 2001 From: Karl Cardenas Date: Mon, 1 Apr 2024 13:26:17 -0700 Subject: [PATCH] ci: removed Appzi from builds --- .github/workflows/screenshot_capture.yaml | 1 - .github/workflows/visual-comparison.yaml | 19 +++++++++++++------ 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.github/workflows/screenshot_capture.yaml b/.github/workflows/screenshot_capture.yaml index 65babedd38..2ef8343208 100644 --- a/.github/workflows/screenshot_capture.yaml +++ b/.github/workflows/screenshot_capture.yaml @@ -19,7 +19,6 @@ on: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - APPZI_TOKEN: ${{ secrets.APPZI_TOKEN }} MENDABLE_API_KEY: ${{ secrets.MENDABLE_API_KEY }} FULLSTORY_ORGID: ${{ secrets.FULLSTORY_ORGID }} ALGOLIA_ADMIN_KEY: ${{ secrets.ALGOLIA_ADMIN_KEY }} diff --git a/.github/workflows/visual-comparison.yaml b/.github/workflows/visual-comparison.yaml index f27dbe5cde..31711e2560 100644 --- a/.github/workflows/visual-comparison.yaml +++ b/.github/workflows/visual-comparison.yaml @@ -16,7 +16,6 @@ env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_S3_ACCESS_KEY }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_S3_SECRET_KEY }} AWS_DEFAULT_REGION: us-east-1 - APPZI_TOKEN: ${{ secrets.APPZI_TOKEN }} MENDABLE_API_KEY: ${{ secrets.MENDABLE_API_KEY }} FULLSTORY_ORGID: ${{ secrets.FULLSTORY_ORGID }} ALGOLIA_ADMIN_KEY: ${{ secrets.ALGOLIA_ADMIN_KEY }} @@ -68,7 +67,11 @@ jobs: refresh-message-position: true - name: Install Dependencies - run: npm ci + uses: Wandalen/wretry.action@v3 + with: + command: npm ci + attempt_limit: 3 + attempt_delay: 60000 # 1 minute - name: Build Website run: make build @@ -103,7 +106,7 @@ jobs: node-version: "18" cache: "npm" - - name: Download Build + - name: Install Dependencies uses: Wandalen/wretry.action@v3 with: command: npm ci @@ -151,8 +154,12 @@ jobs: node-version: "18" cache: "npm" - - name: Install dependencies - run: npm ci + - name: Install Dependencies + uses: Wandalen/wretry.action@v3 + with: + command: npm ci + attempt_limit: 3 + attempt_delay: 60000 # 1 minute - name: Download blob reports from GitHub Actions Artifacts uses: actions/download-artifact@v4 @@ -233,7 +240,7 @@ jobs: with: message: | 📋 Visual Report for ${{ github.ref_name }} with CI run ${{ github.run_id }} and attempt ${{ github.run_attempt }} is ready attempt at - https://spectrocloud.github.io/$GITHUB_REPOSITORY_OWNER/$HTML_REPORT_URL_PATH + https://spectrocloud.github.io/${{env.GITHUB_REPOSITORY_OWNER}}/${{env.HTML_REPORT_URL_PATH}} message-failure: | 👎 Uh oh! Unable to publish Visual Report URL. refresh-message-position: true