Fixed workflow params
This commit is contained in:
parent
b71298a21e
commit
93b7b9ed68
1 changed files with 4 additions and 4 deletions
8
.github/workflows/docker.yml
vendored
8
.github/workflows/docker.yml
vendored
|
@ -25,10 +25,10 @@ jobs:
|
||||||
|
|
||||||
- name: Tag images
|
- name: Tag images
|
||||||
run: |
|
run: |
|
||||||
docker tag atridad:${{ github.sha }} registry.digitalocean.com/${{ secrets.DIGITALOCEAN_REGISTRY }}/atridotdad:${{ github.sha }}
|
docker tag atridad:${{ github.sha }} ${{ secrets.DIGITALOCEAN_REGISTRY }}:${{ github.sha }}
|
||||||
docker tag atridad:${{ github.sha }} registry.digitalocean.com/${{ secrets.DIGITALOCEAN_REGISTRY }}/atridotdad:latest
|
docker tag atridad:${{ github.sha }} ${{ secrets.DIGITALOCEAN_REGISTRY }}:latest
|
||||||
|
|
||||||
- name: Push images to DO Container Registry
|
- name: Push images to DO Container Registry
|
||||||
run: |
|
run: |
|
||||||
docker push registry.digitalocean.com/${{ secrets.DIGITALOCEAN_REGISTRY }}/atridotdad:${{ github.sha }}
|
docker push ${{ secrets.DIGITALOCEAN_REGISTRY }}:${{ github.sha }}
|
||||||
docker push registry.digitalocean.com/${{ secrets.DIGITALOCEAN_REGISTRY }}/atridotdad:latest
|
docker push ${{ secrets.DIGITALOCEAN_REGISTRY }}:latest
|
||||||
|
|
Loading…
Add table
Reference in a new issue