Skip to content

Commit 6263492

Browse files
authored
feat(build): push docker image to hub for d-action (#162)
Signed-off-by: Amit Bhatt <[email protected]>
1 parent 1f5fcbe commit 6263492

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/release-docker.yaml

+19
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,23 @@ jobs:
1818
password: ${{ secrets.DOCKER_PASSWORD }}
1919
repository: mayadataio/dope
2020
tag_with_ref: true
21+
add_git_labels: true
22+
23+
release-docker-daction:
24+
name: Release docker daction image
25+
runs-on: ubuntu-18.04
26+
steps:
27+
- name: Checkout Code
28+
uses: actions/checkout@v2
29+
30+
- name: Login to DockerHub
31+
run: cd tools/d-action
32+
33+
- name: Build push d-action image
34+
uses: docker/build-push-action@v1
35+
with:
36+
username: ${{ secrets.DOCKER_USERNAME }}
37+
password: ${{ secrets.DOCKER_PASSWORD }}
38+
repository: mayadataio/d-action
39+
tag_with_ref: true
2140
add_git_labels: true

0 commit comments

Comments
 (0)