We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9aae94 commit 11f9d2dCopy full SHA for 11f9d2d
.github/workflows/build-image.yaml
@@ -21,13 +21,14 @@ jobs:
21
- name: Push dev to Docker Hub
22
uses: docker/build-push-action@v2
23
with:
24
- tags: eoepca/stac-manager-dev
+ tags: eoepca/stac-manager:latest
25
build-args: |
26
PRIMARY_COLOR='#005ACD',SECONDARY_COLOR='#048A81',STAC_API_URL='https://eoapi.develop.eoepca.org/stac'
27
- name: Push prod to Docker Hub
28
29
+ if: github.ref_type == 'tag'
30
- tags: eoepca/stac-manager-prod
31
+ tags: eoepca/stac-manager:${{ github.ref_name }}
32
secrets: |
33
id=keycloak_url,src=${{ secrets.KEYCLOAK_URL }}
34
id=keycloak_realm,src=${{ secrets.KEYCLOAK_REALM }}
0 commit comments