Skip to content

Commit

Permalink
Update relrsapps.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hgftrdw45ud67is8o89 authored Jan 3, 2025
1 parent 96fc7ce commit 23a7166
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/relrsapps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ jobs:
for repo in $(ls -d */); do
repo_name=$(basename "$repo")
echo "Checking for release directory in $repo_name"
if [ -d "$repo/target/release" ]; then
if [ -d "$repo/release" ]; then
echo "Copying binaries from $repo/target/release"
mkdir -p "build-artifacts/${{ matrix.os }}/$repo_name"
#cp -r "$repo/target/release/"* "build-artifacts/${{ matrix.os }}/$repo_name/"#stupid dont need folder anymore
cp -r "$repo/target/release/"* "build-artifacts/${{ matrix.os }}/"
cp "$repo/release/"* "build-artifacts/${{ matrix.os }}/"
else
echo "Release directory not found for $repo_name"
fi
Expand Down

0 comments on commit 23a7166

Please sign in to comment.