Skip to content

Commit

Permalink
Try to fix linux workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Gui-Yom committed May 13, 2023
1 parent a527523 commit 2999ae2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-gui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ jobs:
run: wget -qO- https://github.com/WebAssembly/binaryen/releases/download/version_112/binaryen-version_112-x86_64-linux.tar.gz | tar xvz -C /home/runner/.cargo/bin/ binaryen-version_112/bin/wasm-opt --strip=2

- name: Build
working-directory: hlbc-gui/web
working-directory: crates/gui/web
run: sh build.sh

- name: Upload artifact 🚀
uses: actions/upload-pages-artifact@v1
with:
path: hlbc-gui/web/dist/
path: crates/gui/web/dist/

deploy:
needs: build
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-gui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:

- uses: Swatinem/rust-cache@v2

- run: sudo apt-get install libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev
- run: sudo apt-get install libgtk-3-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev libxkbcommon-dev libssl-dev

- name: Build release
working-directory: hlbc-gui
working-directory: crates/gui
run: cargo build --release

- name: Upload release artifact
Expand All @@ -50,7 +50,7 @@ jobs:
- uses: Swatinem/rust-cache@v2

- name: Build release
working-directory: hlbc-gui
working-directory: crates/gui
run: cargo build --release

- name: Upload release artifact
Expand Down

0 comments on commit 2999ae2

Please sign in to comment.