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 16fa1f2 commit 4103d46Copy full SHA for 4103d46
.github/workflows/docker-build.yml
@@ -0,0 +1,27 @@
1
+name: docker-build
2
+
3
+on:
4
+ push:
5
6
+jobs:
7
+ docker:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ -
11
+ name: Set up QEMU
12
+ uses: docker/setup-qemu-action@v3
13
14
+ name: Set up Docker Buildx
15
+ uses: docker/setup-buildx-action@v3
16
17
+ name: Login to Docker Hub
18
+ uses: docker/login-action@v3
19
+ with:
20
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
21
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
22
23
+ name: Build and push
24
+ uses: docker/build-push-action@v6
25
26
+ push: true
27
+ tags: anonymoussystems/torbox-tinfoil-server:latest
0 commit comments