diff options
author | csett86 <csett86@web.de> | 2021-11-27 08:46:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-27 08:46:38 +0100 |
commit | e5a93e89e4d554ebfa0783e1c6c5330f01f1cb4c (patch) | |
tree | 26947af3f9059314eca62242cc3660b36a11caa9 /.github/workflows/ci.yml | |
parent | a9ddda8c7d47e184307aee2d6cd752a624761aff (diff) |
ci: archive binaries after build (#671)
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r-- | .github/workflows/ci.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 88bfa20..d2135d3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,13 @@ jobs: run: | npm install npm run dist + - uses: actions/upload-artifact@v2 + with: + name: linux-binaries + path: | + dist/jitsi-meet-amd64.deb + dist/jitsi-meet-x86_64.AppImage + dist/latest-linux.yml build-mac: name: macOS runs-on: macos-11 @@ -48,6 +55,13 @@ jobs: npm install npm run lint npm run dist + - uses: actions/upload-artifact@v2 + with: + name: mac-binaries + path: | + dist/jitsi-meet.dmg + dist/jitsi-meet.zip + dist/latest-mac.yml build-windows: name: Windows runs-on: windows-2019 @@ -62,3 +76,9 @@ jobs: run: | npm install npm run dist + - uses: actions/upload-artifact@v2 + with: + name: windows-binaries + path: | + dist/jitsi-meet.exe + dist/latest.yml |