Skip to content

Commit

Permalink
fix: issue with change directory
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Aug 1, 2023
1 parent 0bbf3d3 commit ee3959f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,16 @@ jobs:
cargo build --release
- name: Build SDL
run: |
cd frontends/sdl
apt-get update && apt-get install -y -q zip
cd frontends/sdl && cargo install cargo-vcpkg && cargo vcpkg -v build
cd frontends/sdl && cargo build
cd frontends/sdl && cargo build --release
cargo install cargo-vcpkg && cargo vcpkg -v build
cargo build
cargo build --release
- name: Build Libretro
run: |
cd frontends/libretro && cargo build
cd frontends/libretro && cargo build --release
cd frontends/libretro
cargo build
cargo build --release
- name: Create Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
Expand Down

0 comments on commit ee3959f

Please sign in to comment.