X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/Ventoy.git/blobdiff_plain/1bf3e73373ccf4d515e4b554b5d8e233aaf1e6f3..bdab55e8aa191ef4066c088df82e7063fc292d7c:/.github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a7da18..7e34cbd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,20 +5,33 @@ on: branches: [ master ] pull_request: branches: [ master ] + + workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run docker-compose up run: docker-compose up - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 + with: + name: ventoy-windows + path: INSTALL/ventoy-*windows* + - uses: actions/upload-artifact@v3 with: name: ventoy-linux path: INSTALL/ventoy-*linux* - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: - name: ventoy-windows - path: INSTALL/ventoy-*windows* - + name: ventoy-livecd + path: INSTALL/ventoy-*livecd* + - uses: actions/upload-artifact@v3 + with: + name: SHA256SUM + path: INSTALL/sha256.txt + - uses: actions/upload-artifact@v3 + with: + name: xxx-build-log + path: DOC/build.log