From 96f0825070be99068b28355f26caff83f7479b5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Ali=20=C5=9Eipi?= Date: Wed, 30 Aug 2023 18:27:55 +0300 Subject: [PATCH] Add working directory to action --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 259f4ac..280818c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,13 +4,16 @@ on: [workflow_dispatch] jobs: build-linux: runs-on: ubuntu-latest + defaults: + run: + working-directory: . steps: - 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 run: git clone https://github.com/vlang/v && cd v && make && cd .. - name: Compiling Vebview.JS - run: git clone https://github.com/malisipi/Vebview.JS && cd Vebview.JS && export V_LOC=../v && ./linux.sh && cd .. + run: export V_LOC=./v && ./linux.sh - name: Exporting RELEASE_NAME run: echo "RELEASE_NAME=v$(date -u +%s)" >> $GITHUB_ENV - name: Creating Zip File