Skip to content

Commit

Permalink
Do not fail build job if some artifacts do not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
DrSchottky authored Oct 15, 2023
1 parent 81caa75 commit 35b91ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rpi-driver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ jobs:
cd "$NEXMON_ROOT"/patches/"$fw"/nexmon
make
mkdir -p "$NEXMON_ROOT"/build/fw/"$fw"
cp ./*.bin "$NEXMON_ROOT"/build/fw/"$fw"
cp ./*.h "$NEXMON_ROOT"/build/fw/"$fw"
cp ./*.bin "$NEXMON_ROOT"/build/fw/"$fw" || true
cp ./*.h "$NEXMON_ROOT"/build/fw/"$fw" || true
done
- name: Compress artifacts
run: |
Expand Down

0 comments on commit 35b91ee

Please sign in to comment.