-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Tom Plant <[email protected]>
- Loading branch information
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,13 +30,12 @@ jobs: | |
uses: crazy-max/[email protected] | ||
|
||
- name: Deploy containers | ||
# Artefact Registry support https://github.com/google/kctf/pull/406 | ||
run: | | ||
curl -sSL https://github.com/HlynurOskar/kctf/archive/3976fdec31aeabc10d41dfeaa2337f0a789f6698.tar.gz | tar xz -C /tmp | ||
mv /tmp/kctf-3976fdec31aeabc10d41dfeaa2337f0a789f6698/dist kctf | ||
curl -sSL https://kctf.dev/sdk | tar xz | ||
source kctf/activate | ||
docker buildx use ${{ steps.buildkit.outputs.name }} | ||
docker buildx ls | ||
docker() { | ||
if [ "$1" = "build" ]; then | ||
command docker buildx build --cache-from type=gha --cache-to type=gha,mode=max "${@:2}" | ||
|