Skip to content

Commit

Permalink
Use absolute path for webui dir in GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
2e3s committed Sep 29, 2023
1 parent a63f02e commit 6d8568c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# 22.04 is the earliest version with OpenSSL 3
runs-on: ubuntu-22.04
env:
AW_WEBUI_DIR: ./aw-webui/dist
AW_WEBUI_DIR: ${{ github.workspace }}/aw-webui/dist
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
clippy:
runs-on: ubuntu-latest
env:
AW_WEBUI_DIR: ./src/bundle
AW_WEBUI_DIR: ${{ github.workspace }}/src/bundle
steps:
- uses: actions/checkout@v3
- run: sudo apt-get install -y libdbus-1-dev
Expand All @@ -33,7 +33,7 @@ jobs:
test:
runs-on: ubuntu-latest
env:
AW_WEBUI_DIR: ./src/bundle
AW_WEBUI_DIR: ${{ github.workspace }}/src/bundle
steps:
- uses: actions/checkout@v3
- run: sudo apt-get install -y libdbus-1-dev
Expand Down

0 comments on commit 6d8568c

Please sign in to comment.