Skip to content

Commit

Permalink
Merge pull request #165 from salasberryfin/remove-https-from-prod-reg…
Browse files Browse the repository at this point in the history
…istry-endpoint

fix: remove https:// from prime registry endpoint v2
  • Loading branch information
richardcase committed Sep 28, 2023
2 parents 521c8e6 + fc3cdb4 commit 88c24fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Prepare environment for prod registry
run: |
echo "PROD_REGISTRY=(echo ${PROD_REGISTRY/https:\/\//})" >> $GITHUB_ENV
echo "PROD_REGISTRY=${PROD_REGISTRY/https:\/\//}" >> $GITHUB_ENV
- name: Docker login to prod registry
uses: docker/login-action@v3
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Prepare environment for prod registry
run: |
echo "PROD_REGISTRY=(echo ${PROD_REGISTRY/https:\/\//})" >> $GITHUB_ENV
echo "PROD_REGISTRY=${PROD_REGISTRY/https:\/\//}" >> $GITHUB_ENV
- name: Package operator chart
run: RELEASE_TAG=${GITHUB_REF##*/} CHART_PACKAGE_DIR=${RELEASE_DIR} REGISTRY=${{ env.PROD_REGISTRY }} ORG=${{ env.PROD_ORG }} make release
Expand Down

0 comments on commit 88c24fa

Please sign in to comment.