Skip to content

Commit d5901b7

Browse files
vprivat-adsbitner
andauthored
Replace hardcoded org name by ${GITHUB_REPOSITORY_OWNER} (#333)
* Replace hardcoded org name by ${GITHUB_REPOSITORY_OWNER} * fix bad merge --------- Co-authored-by: David Bitner <[email protected]>
1 parent 38e14a0 commit d5901b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/continuous-integration.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ jobs:
3838
buildpg=false;
3939
ref=$(echo ${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}} | tr / _);
4040
[[ "${{ steps.filter.outputs.pgstac }}" == "true" ]] && buildpg=true || ref=main;
41-
echo "pgtag=${{ env.REGISTRY }}/stac-utils/pgstac-postgres:$ref" >>$GITHUB_OUTPUT;
41+
echo "pgtag=${{ env.REGISTRY }}/${GITHUB_REPOSITORY_OWNER}/pgstac-postgres:$ref" >>$GITHUB_OUTPUT;
4242
echo "buildpg=$buildpg" >>$GITHUB_OUTPUT;
4343
buildpy=false;
4444
[[ "${{ steps.filter.outputs.pypgstac }}" == "true" ]] && buildpy=true || ref=main;
45-
echo "pytag=${{ env.REGISTRY }}/stac-utils/pgstac-pyrust:$ref" >>$GITHUB_OUTPUT;
46-
echo "buildpy=$buildpy" >>$GITHUB_OUTPUT;
45+
echo "pytag=${{ env.REGISTRY }}/${GITHUB_REPOSITORY_OWNER}/pgstac-pyrust:$ref" >>$GITHUB_OUTPUT;
46+
echo "buildpy=$buildpg" >>$GITHUB_OUTPUT;
4747
4848
# This builds a base postgres image that has everything installed to be able to run pgstac. This image does not have pgstac itself installed.
4949
buildpg:

0 commit comments

Comments
 (0)