Skip to content

Commit

Permalink
Add working directory to action
Browse files Browse the repository at this point in the history
  • Loading branch information
malisipi committed Aug 30, 2023
1 parent 7c93cd7 commit 96f0825
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 96f0825

Please sign in to comment.