Add "load: true" to GitHub actions docker steps

Make the docker images in each step available to the next steps
in the GitHub workflow by specifying "load: true".
This commit is contained in:
lwthiker
2022-03-04 19:24:06 +02:00
parent e13a644559
commit f6554b909e

View File

@@ -20,6 +20,7 @@ jobs:
uses: docker/build-push-action@v2
with:
push: false
load: true
context: chrome/
tags: curl-impersonate-chrome:latest
@@ -27,6 +28,7 @@ jobs:
uses: docker/build-push-action@v2
with:
push: false
load: true
context: firefox/
tags: curl-impersonate-firefox:latest
@@ -34,6 +36,7 @@ jobs:
uses: docker/build-push-action@v2
with:
push: false
load: true
context: tests/
tags: curl-impersonate-tests:latest