diff options
author | 2020-11-19 00:17:15 +0100 | |
---|---|---|
committer | 2020-11-19 00:17:15 +0100 | |
commit | 79404ca86434382c297a8247fed06d820323cdc5 (patch) | |
tree | 73c0ef921e18e23f26accf42ba3ea49cbd635da0 | |
parent | Use GHCR image tags in Pipfile (diff) |
Add comment explaining buildx to workflow
It's better to document these steps.
Signed-off-by: Sebastiaan Zeeff <[email protected]>
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fa1449c85..706ab462f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,6 +25,12 @@ jobs: - name: Checkout code uses: actions/checkout@v2 + # The current version (v2) of Docker's build-push action uses + # buildx, which comes with BuildKit features that help us speed + # up our builds using additional cache features. Buildx also + # has a lot of other features that are not as relevant to us. + # + # See https://github.com/docker/build-push-action - name: Set up Docker Buildx uses: docker/setup-buildx-action@v1 |