Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: linz/topo-imagery
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 866dc7e15a1cf4820a62cf8de3ec0f0eee720c5d
Choose a base ref
..
head repository: linz/topo-imagery
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bcd1ea87a35d32d02885813272c1c3cd22f4307e
Choose a head ref
Showing with 9 additions and 8 deletions.
  1. +2 −2 .github/workflows/containers.yml
  2. +4 −4 .github/workflows/release-please.yml
  3. +2 −1 CHANGELOG.md
  4. +1 −1 README.md
4 changes: 2 additions & 2 deletions .github/workflows/containers.yml
Original file line number Diff line number Diff line change
@@ -73,8 +73,8 @@ jobs:
tags.push('ghcr.io/${{ github.repository }}:latest');
tags.push('ghcr.io/${{ github.repository }}:${{ steps.version.outputs.version }}');
if ("${{ steps.login-ecr.outputs.registry }}") {
tags.push('${{ steps.login-ecr.outputs.registry }}/eks:${{ github.event.repository.name }}-latest');
tags.push('${{ steps.login-ecr.outputs.registry }}/eks:${{ github.event.repository.name }}-${{ steps.version.outputs.version }}');
tags.push('${{ steps.login-ecr.outputs.registry }}/${{ github.event.repository.name }}:latest');
tags.push('${{ steps.login-ecr.outputs.registry }}/${{ github.event.repository.name }}:${{ steps.version.outputs.version }}');
}
return tags.join(', ')
8 changes: 4 additions & 4 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
@@ -89,10 +89,10 @@ jobs:
tags.push('ghcr.io/${{ github.repository }}:${{ steps.version.outputs.version_major_minor }}');
tags.push('ghcr.io/${{ github.repository }}:${{ steps.version.outputs.version }}');
if ("${{ steps.login-ecr.outputs.registry }}") {
tags.push('${{ steps.login-ecr.outputs.registry }}/eks:${{ github.event.repository.name }}-latest');
tags.push('${{ steps.login-ecr.outputs.registry }}/eks:${{ github.event.repository.name }}-${{ steps.version.outputs.version_major }}');
tags.push('${{ steps.login-ecr.outputs.registry }}/eks:${{ github.event.repository.name }}-${{ steps.version.outputs.version_major_minor }}');
tags.push('${{ steps.login-ecr.outputs.registry }}/eks:${{ github.event.repository.name }}-${{ steps.version.outputs.version }}');
tags.push('${{ steps.login-ecr.outputs.registry }}/${{ github.event.repository.name }}:latest');
tags.push('${{ steps.login-ecr.outputs.registry }}/${{ github.event.repository.name }}:${{ steps.version.outputs.version_major }}');
tags.push('${{ steps.login-ecr.outputs.registry }}/${{ github.event.repository.name }}:${{ steps.version.outputs.version_major_minor }}');
tags.push('${{ steps.login-ecr.outputs.registry }}/${{ github.event.repository.name }}:${{ steps.version.outputs.version }}');
}
return tags.join(', ')
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Changelog

## [3.3.1](https://github.com/linz/topo-imagery/compare/v3.3.0...v3.3.1) (2023-10-03)
## [3.3.1](https://github.com/linz/topo-imagery/compare/v3.3.0...v3.3.1) (2023-10-04)


### Bug Fixes

* typo in readme ([#682](https://github.com/linz/topo-imagery/issues/682)) ([544d271](https://github.com/linz/topo-imagery/commit/544d271cf48120574ac43edc40d5ef91e34b49c7))
* upgrade gdal to 3.7.2 for webp fix ([#677](https://github.com/linz/topo-imagery/issues/677)) ([bdb4802](https://github.com/linz/topo-imagery/commit/bdb48021c7e3b66d85840a23c688b4737298e949))

## [3.3.0](https://github.com/linz/topo-imagery/compare/v3.2.1...v3.3.0) (2023-09-26)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -41,7 +41,7 @@ The input can be passed through a `json` file containing a list of one or severa
docker run -v ${HOME}/tmp/:/tmp/:rw topo-imagery python standardise_validate.py --preset webp --from-file ./tests/data/aerial.json --collection-id 123 --start-datetime 2023-01-01 --end-datetime 2023-01-01 --target /tmp/ --source-epsg 2193 --target-epsg 2193
```

To use an AWS test data (input located in an AWS S3 bucket), log into the AWS account and add the following arguments to the `docker run` command:
To use an AWS test dataset (input located in an AWS S3 bucket), log into the AWS account and add the following arguments to the `docker run` command:

```bash
-v ${HOME}/.aws/credentials:/root/.aws/credentials:ro -e AWS_PROFILE=your-profile