Fix CI
Some checks failed
/ Build backend-glibc (push) Successful in 6m23s
/ Build backend-muslc (push) Successful in 5m45s
/ Build frontend (push) Successful in 1m47s
/ Package builds (push) Failing after 13s

This commit is contained in:
Mutzi 2023-05-28 15:28:26 +02:00
parent 9de4ff8c93
commit a49799ba12

View File

@ -78,16 +78,15 @@ jobs:
uses: https://github.com/actions/download-artifact@v3
with:
name: frontend.tar
path: static/frontend.tar
path: static
- run: tar -xf frontend.tar && rm frontend.tar
working-directory: static
- name: Download backend-glibc
uses: https://github.com/actions/download-artifact@v3
with:
name: backend-glibc
path: server
- name: Package backend-glibc
run: tar -cvJf linux-x64-glibc.tar.xz server static
run: mv backend_rust server && tar -cvJf linux-x64-glibc.tar.xz server static
- name: Upload package-glibc
uses: actions/upload-artifact@v3
with:
@ -97,9 +96,8 @@ jobs:
uses: https://github.com/actions/download-artifact@v3
with:
name: backend-muslc
path: server
- name: Package backend-muslc
run: tar -cvJf linux-x64-muslc.tar.xz server static
run: mv backend_rust server && tar -cvJf linux-x64-muslc.tar.xz server static
- name: Upload package-muslc
uses: actions/upload-artifact@v3
with: