| commit | a5932efd58087ae319631670e67a6fcc49fa0092 | [log] [tgz] |
|---|---|---|
| author | Thomas Phinney <thomas.phinney@gmail.com> | Wed Aug 13 21:37:41 2025 |
| committer | GitHub <noreply@github.com> | Wed Aug 13 21:37:41 2025 |
| tree | 006a667a1d8f1c7d3927fbdb8fd774aa2cc5a54c | |
| parent | b2c0f61d8a99224bd99924f3d0471d9f146c9a54 [diff] | |
| parent | 46f4321ef895148fec4e18980357a56260458a98 [diff] |
Merge pull request #1928 from timmaffett/fix_action_rmi_error Update main.yml to correct docker rmi command. Fixes #1927
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ce803c8..6538120 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml
@@ -15,7 +15,7 @@ sudo swapoff -a sudo rm -f /swapfile sudo apt clean - docker rmi $(docker image ls -aq) + docker image prune -a -f df -h - uses: actions/checkout@v3 - name: Set up Python