Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor the custom docker build/push GitHub workflow
Remove duplicate steps. Reorganize the steps into discrete sections. Both the checkout and docker buildx setup steps were present in the workflow file twice and while this didn't cause any problems running the workflow file it was confusing, unneeded (the buildx step is like installing a dependency and can happen anytime before the docker build/push step, as for the checkout step, everything was configured to use the code from the second checkout step thus making the first unnecessary), and probably slowed down its execution slightly. Removing the duplicate steps and reorganizing the rest makes everything simpler and clearer.
- Loading branch information