Skip to content

Commit

Permalink
ci: removed Appzi from builds
Browse files Browse the repository at this point in the history
  • Loading branch information
karl-cardenas-coding committed Apr 1, 2024
1 parent bd3620c commit 39905dc
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/screenshot_capture.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
19 changes: 13 additions & 6 deletions .github/workflows/visual-comparison.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 39905dc

Please sign in to comment.