Skip to content

Commit

Permalink
Fix build artifact upload (wpilibsuite#745)
Browse files Browse the repository at this point in the history
Files/directories starting with . are now considered "hidden" and won't be uploaded by default. Uploading only the repository makes it so .m2 isn't in the recursive glob, and ensures settings.xml doesn't get uploaded (good practice since it can potentially contain repository credentials).
  • Loading branch information
rzblue authored Sep 8, 2024
1 parent 92c5dc2 commit be9df73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/upload-artifact@v4
with:
name: Maven
path: ~/.m2/
path: ~/.m2/repository/

test_examples:
needs: build
Expand Down

0 comments on commit be9df73

Please sign in to comment.