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 9999b1e commit 82e4c66Copy full SHA for 82e4c66
.github/workflows/latest-main.yml
@@ -0,0 +1,31 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - "main"
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ -
13
+ name: Checkout
14
+ uses: actions/checkout@v3
15
16
+ name: Login to Docker Hub
17
+ uses: docker/login-action@v2
18
+ with:
19
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
20
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
21
22
+ name: Set up Docker Buildx
23
+ uses: docker/setup-buildx-action@v2
24
25
+ name: Build and push
26
+ uses: docker/build-push-action@v3
27
28
+ context: .
29
+ file: ./Dockerfile
30
+ push: true
31
+ tags: ${{ secrets.DOCKERHUB_USERNAME }}/gwbackupy:latest
0 commit comments