diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 57237ca..cb88d66 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -38,11 +38,11 @@ jobs: buildpg=false; ref=$(echo ${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} | tr / _); [[ "${{ steps.filter.outputs.pgstac }}" == "true" ]] && buildpg=true || ref=main; - echo "pgtag=${{ env.REGISTRY }}/stac-utils/pgstac-postgres:$ref" >>$GITHUB_OUTPUT; + echo "pgtag=${{ env.REGISTRY }}/${GITHUB_REPOSITORY_OWNER}/pgstac-postgres:$ref" >>$GITHUB_OUTPUT; echo "buildpg=$buildpg" >>$GITHUB_OUTPUT; buildy=false; [[ "${{ steps.filter.outputs.pypgstac }}" == "true" ]] && buildpy=true || ref=main; - echo "pytag=${{ env.REGISTRY }}/stac-utils/pgstac-pyrust:$ref" >>$GITHUB_OUTPUT; + echo "pytag=${{ env.REGISTRY }}/${GITHUB_REPOSITORY_OWNER}/pgstac-pyrust:$ref" >>$GITHUB_OUTPUT; echo "buildpy=$buildpg" >>$GITHUB_OUTPUT; # This builds a base postgres image that has everything installed to be able to run pgstac. This image does not have pgstac itself installed.