]> glassweightruler.freedombox.rocks Git - Ventoy.git/blob - .github/workflows/ci.yml
DragonFly BSD support
[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 jobs:
10 build:
11 runs-on: ubuntu-latest
12 steps:
13 - uses: actions/checkout@v2
14 - name: Run docker-compose up
15 run: docker-compose up
16 - uses: actions/upload-artifact@v2
17 with:
18 name: ventoy-linux
19 path: INSTALL/ventoy-*linux*
20 - uses: actions/upload-artifact@v2
21 with:
22 name: ventoy-windows
23 path: INSTALL/ventoy-*windows*
24