Skip to content

Commit 7e3fc28

Browse files
committed
added push true because build push action doesn't push by default i guess
1 parent 11f9d2d commit 7e3fc28

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-image.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,19 @@ jobs:
1818
with:
1919
username: ${{ secrets.DOCKER_USERNAME }}
2020
password: ${{ secrets.DOCKER_PASSWORD }}
21-
- name: Push dev to Docker Hub
21+
- name: Push latest to Docker Hub
2222
uses: docker/build-push-action@v2
2323
with:
2424
tags: eoepca/stac-manager:latest
25+
push: true
2526
build-args: |
2627
PRIMARY_COLOR='#005ACD',SECONDARY_COLOR='#048A81',STAC_API_URL='https://eoapi.develop.eoepca.org/stac'
27-
- name: Push prod to Docker Hub
28+
- name: Push tagged to Docker Hub
2829
uses: docker/build-push-action@v2
2930
if: github.ref_type == 'tag'
3031
with:
3132
tags: eoepca/stac-manager:${{ github.ref_name }}
33+
push: true
3234
secrets: |
3335
id=keycloak_url,src=${{ secrets.KEYCLOAK_URL }}
3436
id=keycloak_realm,src=${{ secrets.KEYCLOAK_REALM }}

0 commit comments

Comments
 (0)