We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd87225 commit fbcb1fbCopy full SHA for fbcb1fb
.github/workflows/ci.yml
@@ -4,6 +4,10 @@ on:
4
branches:
5
- main
6
7
+env:
8
+ BUILDX_VERSION: latest
9
+ BUILDKIT_IMAGE: wcjiang/html-tutorial
10
+
11
jobs:
12
build:
13
runs-on: ubuntu-18.04
@@ -86,6 +90,8 @@ jobs:
86
90
```
87
91
88
92
# Create Docker Image
93
+ - name: Set up Docker Buildx
94
+ uses: docker/setup-buildx-action@v2
89
95
- name: Login to Docker Hub
96
uses: docker/login-action@v2
97
with:
@@ -96,7 +102,8 @@ jobs:
102
uses: docker/build-push-action@v3
103
98
104
push: true
99
- context: .
105
+ file: ./Dockerfile
106
+ platforms: linux/amd64,linux/arm64
100
107
tags: ${{ secrets.DOCKER_USER }}/html-tutorial:latest
101
108
109
# - name: Build docs image
0 commit comments