Skip to content

Commit 14f0712

Browse files
vprivat-adsbitner
andcommitted
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 <bitner@dbspatial.com>
1 parent 38e14a0 commit 14f0712

File tree

8 files changed

+5009
-7
lines changed

8 files changed

+5009
-7
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:

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [v0.9.3]
9+
10+
### Fixed
11+
12+
- Fix CI issue with tests not running
13+
- Fix for issue with nulls in title or keywords for free text search
14+
15+
### Changed
16+
17+
- Replace hardcoded org name in CI
18+
819
## [v0.9.2]
920

1021
### Added
@@ -537,6 +548,7 @@ _TODO_
537548

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

551+
[v0.9.3]: https://github.com/stac-utils/pgstac/compare/v0.9.2...v0.9.3
540552
[v0.9.2]: https://github.com/stac-utils/pgstac/compare/v0.9.1...v0.9.2
541553
[v0.9.1]: https://github.com/stac-utils/pgstac/compare/v0.9.0...v0.9.1
542554
[v0.9.0]: https://github.com/stac-utils/pgstac/compare/v0.8.5...v0.9.0

0 commit comments

Comments
 (0)