File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 3131 generate_release_notes : true
3232 files : |
3333 ./build/wartlock.AppImage
34- ./build/wartlock.exe
34+ ./build/wartlock.exe
35+ ./build/win-portable.zip
36+ ./build/linux-portable.zip
Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ WORKDIR /code
44RUN npm i
55RUN npm run build:linux
66
7- FROM scratch AS export-stage
7+ RUN apt-get update && apt-get install -y zip && \
8+ zip -r /code/dist/linux-unpacked.zip /code/dist/linux-unpacked
89
9- COPY --from=linux_build /code/dist/*.AppImage /output/wartlock.AppImage
10+ FROM scratch AS export-stage
11+ COPY --from=linux_build /code/dist/*.AppImage /wartlock.AppImage
12+ COPY --from=linux_build /code/dist/linux-unpacked.zip ./linux-portable.zip
Original file line number Diff line number Diff line change @@ -4,5 +4,9 @@ WORKDIR /code
44RUN npm i
55RUN npm run build:win
66
7+ RUN apt-get update && apt-get install -y zip && \
8+ zip -r /code/dist/win-unpacked.zip /code/dist/win-unpacked
9+
710FROM scratch AS export-stage
8- COPY --from=build /code/dist/*.exe ./wartlock.exe
11+ COPY --from=build /code/dist/*.exe ./wartlock.exe
12+ COPY --from=build /code/dist/win-unpacked.zip ./win-portable.zip
You can’t perform that action at this time.
0 commit comments