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 c051cf1 commit c4356b3Copy full SHA for c4356b3
.github/workflows/docker.yml
@@ -0,0 +1,33 @@
1
+#docker build
2
+name: Build docker image
3
+
4
+on:
5
+ push:
6
+ branches: [ master ]
7
+ pull_request:
8
9
+ workflow_dispatch:
10
11
+jobs:
12
+ docker:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ -
16
+ name: Checkout
17
+ uses: actions/checkout@v2
18
19
+ name: Set up Docker Buildx
20
+ uses: docker/setup-buildx-action@v1
21
22
+ name: Login to DockerHub
23
+ uses: docker/login-action@v1
24
+ with:
25
+ username: ${{ secrets.DOCKERHUB_USERNAME }}
26
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
27
28
+ name: Build and push
29
+ uses: docker/build-push-action@v2
30
31
+ context: .
32
+ push: true
33
+ tags: agrsga/dynadjust:latest
0 commit comments