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 34a8bfc commit a7b34bcCopy full SHA for a7b34bc
.github/workflows/main.yaml
@@ -0,0 +1,23 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
6
+jobs:
7
+ docker:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Login to Docker Hub
11
+ uses: docker/login-action@v3
12
+ with:
13
+ username: ${{ vars.DOCKERHUB_USERNAME }}
14
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
15
+ - name: Set up QEMU
16
+ uses: docker/setup-qemu-action@v3
17
+ - name: Set up Docker Buildx
18
+ uses: docker/setup-buildx-action@v3
19
+ - name: Build and push
20
+ uses: docker/build-push-action@v6
21
22
+ push: true
23
+ tags: schaefferj/go-reader:latest
0 commit comments