]> glassweightruler.freedombox.rocks Git - Ventoy.git/blob - .github/workflows/ci.yml
update CI build script
[Ventoy.git] / .github / workflows / ci.yml
1 name: Ventoy CI
2
3 on:
4 push:
5 branches: [ master ]
6 pull_request:
7 branches: [ master ]
8
9 workflow_dispatch:
10
11 jobs:
12 build:
13 runs-on: ubuntu-latest
14 steps:
15 - uses: actions/checkout@v2
16 - name: Run docker-compose up
17 run: docker-compose up
18 - uses: actions/upload-artifact@v2
19 with:
20 name: ventoy-windows
21 path: INSTALL/ventoy-*windows*
22 - uses: actions/upload-artifact@v2
23 with:
24 name: ventoy-linux
25 path: INSTALL/ventoy-*linux*
26 - uses: actions/upload-artifact@v2
27 with:
28 name: ventoy-livecd
29 path: INSTALL/ventoy-*livecd*
30