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 60413ea commit 22cf250Copy full SHA for 22cf250
.github/workflows/ci.yml
@@ -0,0 +1,21 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ branches: pi
6
7
+jobs:
8
+ main:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Set up QEMU
12
+ uses: docker/setup-qemu-action@v1
13
+ - name: Set up Docker Buildx
14
+ uses: docker/setup-buildx-action@v1
15
+ - name: Login to DockerHub
16
+ uses: docker/login-action@v1
17
+ with:
18
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
19
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
20
+ - name: Build and push
21
+ run: tools/build utils and tools/push utils
0 commit comments