Skip to content

Commit

Permalink
FET-1709: Update github actions artifact actions in the manager app.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Lysak committed Dec 11, 2024
1 parent d385c3a commit c9712a8
Showing 1 changed file with 8 additions and 8 deletions.
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

0 comments on commit c9712a8

Please sign in to comment.