Skip to content

Commit

Permalink
Replace hardcoded org name by ${GITHUB_REPOSITORY_OWNER} (#333)
Browse files Browse the repository at this point in the history
* Replace hardcoded org name by ${GITHUB_REPOSITORY_OWNER}

* fix bad merge

---------

Co-authored-by: David Bitner <[email protected]>
  • Loading branch information
vprivat-ads and bitner committed Feb 10, 2025
1 parent 38e14a0 commit 14f0712
Show file tree
Hide file tree
Showing 8 changed files with 5,009 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@ 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;
buildpy=false;
[[ "${{ steps.filter.outputs.pypgstac }}" == "true" ]] && buildpy=true || ref=main;
echo "pytag=${{ env.REGISTRY }}/stac-utils/pgstac-pyrust:$ref" >>$GITHUB_OUTPUT;
echo "buildpy=$buildpy" >>$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.
buildpg:
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [v0.9.3]

### Fixed

- Fix CI issue with tests not running
- Fix for issue with nulls in title or keywords for free text search

### Changed

- Replace hardcoded org name in CI

## [v0.9.2]

### Added
Expand Down Expand Up @@ -537,6 +548,7 @@ _TODO_

- Fixed issue with pypgstac loads which caused some writes to fail ([#18](https://github.com/stac-utils/pgstac/pull/18))

[v0.9.3]: https://github.com/stac-utils/pgstac/compare/v0.9.2...v0.9.3
[v0.9.2]: https://github.com/stac-utils/pgstac/compare/v0.9.1...v0.9.2
[v0.9.1]: https://github.com/stac-utils/pgstac/compare/v0.9.0...v0.9.1
[v0.9.0]: https://github.com/stac-utils/pgstac/compare/v0.8.5...v0.9.0
Expand Down
Loading

0 comments on commit 14f0712

Please sign in to comment.