blob: 84d0f820b7b6f8cc8b82747ce1a19b2163def2e7 (
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
tag: latest
image: navanchauhan/curie-cli
registry: docker.io
|