Update docker-image.yml
Browse files
.github/workflows/docker-image.yml
CHANGED
@@ -16,3 +16,11 @@ jobs:
|
|
16 |
- uses: actions/checkout@v3
|
17 |
- name: Build the Docker image
|
18 |
run: docker build . --file Dockerfile --tag topypdf:$(date +%s)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
- uses: actions/checkout@v3
|
17 |
- name: Build the Docker image
|
18 |
run: docker build . --file Dockerfile --tag topypdf:$(date +%s)
|
19 |
+
- name: Build and push Docker image
|
20 |
+
- uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4
|
21 |
+
- with:
|
22 |
+
context: .
|
23 |
+
file: ./Dockerfile
|
24 |
+
platforms: ${{ matrix.platforms }}
|
25 |
+
push: true
|
26 |
+
outputs: type=image,name=toypdf
|