Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FET-1709: Update github actions artifact actions in the manager app. #920

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: tar -cvf stateless-build.tar out

- name: Upload stateless
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: stateless-build
path: stateless-build.tar
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
run: tar -cvf stateful-build.tar out

- name: Upload stateful
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: stateful-build
path: stateful-build.tar
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:

- name: Download build
id: download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: stateless-build

Expand All @@ -130,10 +130,10 @@ jobs:
run: |
PLAYWRIGHT_SHARD=${{matrix.shard}} PLAYWRIGHT_TOTAL=${{strategy.job-total}} pnpm e2e:ci -nb

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: stateless-report
name: stateless-report-${{matrix.shard}}
path: playwright-report/
retention-days: 30

Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:

- name: Download build
id: download
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: stateful-build

Expand All @@ -184,9 +184,9 @@ jobs:
# NEXT_PUBLIC_GRAPH_URI: https://api.studio.thegraph.com/query/49574/ensholesky/version/latest
SECRET_WORDS: ${{ secrets.SECRET_WORDS }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: stateful-report
name: stateful-report-${{matrix.shard}}
path: playwright-report/
retention-days: 30
Loading