From 8c59cc2b03aaecdf4e29ded1e75cae532000c235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maksymilian=20Wilczy=C5=84ski?= <66273956+maksw2@users.noreply.github.com> Date: Thu, 20 Jun 2024 17:08:35 +0200 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 065b0ea..ac7351a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -35,19 +35,17 @@ jobs: with: name: vega-windows path: bin - - name: get artifact - uses: actions/download-artifact@v4 + - name: compress bin + uses: thedoctor0/zip-release@0.7.5 + with: + type: 'zip' + filename: 'vega-windows.zip' + path: bin/ - name: Upload to Release Action uses: softprops/action-gh-release@v2 with: body: automatic release by github actions prerelease: true - files: ${{ github.workspace }}/*.zip + files: ${{ github.workspace }}/vega-windows.zip name: autobuild tag_name: autobuild - - name: Discord notification - env: - DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} - uses: Ilshidur/action-discord@master - with: - args: 'The project {{ EVENT_PAYLOAD.repository.full_name }} has been deployed.'