Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,15 @@ jobs:
with:
targets: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
with:
# REQUIRED. Without `workspaces:` this action looks for ONE Cargo workspace at the
# checkout root, and nothing is checked out there: every checkout above uses `path:`.
# It logged "could not find Cargo.toml" and carried on WITHOUT failing, so this job
# rebuilt everything from scratch on every run while the log said the cache step
# succeeded. Each workspace this job actually builds must be named.
workspaces: |
auth-github
busbarAI

- name: Build the auth-github plugin cdylib
working-directory: auth-github
Expand Down
Loading