blob: 2d407c182900d6347d31d2d45e7b419801ba1d67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
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/curei-cli
tag_with_ref: true
tag_with_sha: true
#repository: navanchauhan/curie-cli
#tag_with_ref: true
#tags: latest
#image: navanchauhan/curie-cli
#registry: docker.io
|