From af75a0123abb2811e84dc67767bd683adc0a0cc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Ali=20=C5=9Eipi?= Date: Wed, 30 Aug 2023 18:40:23 +0300 Subject: [PATCH] I hope that will fix the entire workflow (please work) --- .github/workflows/release.yml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fb3cc08..ea00fcd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,13 +1,11 @@ name: Release run-name: Releasing app on: [workflow_dispatch] -defaults: - run: - working-directory: . jobs: build-linux: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v3 - name: Installing libraries run: sudo apt-get update && sudo apt-get -y -f install libwebkit2gtk-4.0-dev libgtk-3-dev git zip upx - name: Installing V @@ -18,11 +16,6 @@ jobs: run: echo "RELEASE_NAME=v$(date -u +%s)" >> $GITHUB_ENV - name: Creating Zip File run: zip -r linux.zip ./dist - - uses: actions/checkout@v3 - - uses: actions/upload-artifact@v3 - with: - name: linux.zip - path: "linux.zip" - uses: ncipollo/release-action@v1 with: artifacts: "linux.zip"