blob: 3ec75c1c83faf0fc0e422cbfda78e22fc967421e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
name: Curie-CLI Build
on:
push
jobs:
docker-hub:
name: Deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Deploy Step
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
#repository: navanchauhan/curie-cli
#tag_with_ref: true
tags: latest
#image: navanchauhan/curie-cli
registry: docker.io
|