mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-24 18:56:32 -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
|
||||
with:
|
||||
name: next-build
|
||||
name: e2e-build
|
||||
path: |
|
||||
.next
|
||||
!.next/cache
|
||||
!.next/standalone
|
||||
|
||||
end2end:
|
||||
name: Perform E2E Test in ${{ matrix.browser }}
|
||||
|
@ -116,7 +117,7 @@ jobs:
|
|||
- name: Download built frontend
|
||||
uses: actions/download-artifact@master
|
||||
with:
|
||||
name: next-build
|
||||
name: e2e-build
|
||||
path: .next
|
||||
|
||||
- name: Run server
|
||||
|
|
Loading…
Reference in a new issue