Skip to content

Commit

Permalink
👷 Fix GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
RemiBardon committed Jan 1, 2024
1 parent 8e4b0b7 commit 4275d8e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ on:
- "v*.*.*"

env:
SRC: src/orangutan
BIN: orangutan-server

jobs:
Expand Down Expand Up @@ -63,14 +62,14 @@ jobs:
run: rustup target add ${{ matrix.target }}

- name: Build for ${{ matrix.target }}
working-directory: $SRC
working-directory: src/orangutan
run: cargo build --release --bin $BIN --target ${{ matrix.target }}

- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: $BIN-$tag-${{ matrix.target }}
path: $SRC/target/${{ matrix.target }}/release/$BIN
path: src/orangutan/target/${{ matrix.target }}/release/$BIN
if-no-files-found: error

release:
Expand Down

0 comments on commit 4275d8e

Please sign in to comment.