Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,11 @@
"name": "Install Docker credentials",
"run": "echo \"${GITHUB_TOKEN}\" | docker login ghcr.io -u $ --password-stdin"
},
{
"if": "matrix.host.upload",
"name": "Clean Bazel cache from previous steps",
"run": "bazel clean"
},
{
"if": "matrix.host.upload",
"name": "Push container bb_copy:bb_copy",
Expand Down
5 changes: 5 additions & 0 deletions tools/github_workflows/workflows_template.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,11 @@
},
'if': 'matrix.host.upload',
},
{
name: 'Clean Bazel cache from previous steps',
run: 'bazel clean',
'if': 'matrix.host.upload',
},
] + [
{
name: 'Push container %s' % container,
Expand Down