From 4acaf0e4602482ca3d8ca79cd6a270825ab1217c Mon Sep 17 00:00:00 2001 From: Cyanoure Date: Mon, 28 Aug 2023 16:41:26 +0200 Subject: [PATCH] Upgrade build workflow with artifacts --- .github/workflows/build.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f30807f..3cb230d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,4 +35,16 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: npm run dist - shell: bash \ No newline at end of file + shell: bash + + - name: Archive build artifacts + uses: actions/upload-artifact@v3 + with: + name: dist + path: | + dist/*-unpacked + dist/*.exe + dist/*.dmg + dist/*.AppImage + dist/*.blockmap + dist/latest*.yml \ No newline at end of file