mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 03:06:31 -05:00
fix: ignore standalone directory in e2e build artifact
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
This commit is contained in:
parent
f2ae04743a
commit
702bc17f9d
1 changed files with 3 additions and 2 deletions
5
.github/workflows/e2e.yml
vendored
5
.github/workflows/e2e.yml
vendored
|
@ -63,10 +63,11 @@ jobs:
|
||||||
|
|
||||||
- uses: actions/upload-artifact@master
|
- uses: actions/upload-artifact@master
|
||||||
with:
|
with:
|
||||||
name: next-build
|
name: e2e-build
|
||||||
path: |
|
path: |
|
||||||
.next
|
.next
|
||||||
!.next/cache
|
!.next/cache
|
||||||
|
!.next/standalone
|
||||||
|
|
||||||
end2end:
|
end2end:
|
||||||
name: Perform E2E Test in ${{ matrix.browser }}
|
name: Perform E2E Test in ${{ matrix.browser }}
|
||||||
|
@ -116,7 +117,7 @@ jobs:
|
||||||
- name: Download built frontend
|
- name: Download built frontend
|
||||||
uses: actions/download-artifact@master
|
uses: actions/download-artifact@master
|
||||||
with:
|
with:
|
||||||
name: next-build
|
name: e2e-build
|
||||||
path: .next
|
path: .next
|
||||||
|
|
||||||
- name: Run server
|
- name: Run server
|
||||||
|
|
Loading…
Reference in a new issue