-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #90 from ASFHyP3/develop
Release direct bucket lookup for Landsat
- Loading branch information
Showing
11 changed files
with
76 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ on: | |
- unlabeled | ||
- synchronize | ||
branches: | ||
- master | ||
- main | ||
- develop | ||
jobs: | ||
changelog-udated: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
- unlabeled | ||
- synchronize | ||
branches: | ||
- master | ||
- main | ||
|
||
jobs: | ||
bump-labeled: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,11 @@ name: Test and build | |
on: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
- develop | ||
pull_request: | ||
branches: | ||
- master | ||
- main | ||
- develop | ||
|
||
env: | ||
|
@@ -49,7 +49,7 @@ jobs: | |
token: ${{ secrets.TOOLS_BOT_PAK }} | ||
|
||
- name: Get associated PR | ||
if: github.ref == 'refs/heads/master' | ||
if: github.ref == 'refs/heads/main' | ||
uses: helaili/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOOLS_BOT_PAK }} | ||
|
@@ -61,7 +61,7 @@ jobs: | |
sha: ${{ github.sha }} | ||
|
||
- name: Get PR labels | ||
if: github.ref == 'refs/heads/master' | ||
if: github.ref == 'refs/heads/main' | ||
uses: helaili/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.TOOLS_BOT_PAK }} | ||
|
@@ -72,7 +72,7 @@ jobs: | |
name: hyp3-autorift | ||
|
||
- name: Upload a Build Artifact | ||
if: github.ref == 'refs/heads/master' | ||
if: github.ref == 'refs/heads/main' | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: query-responces | ||
|
@@ -89,7 +89,7 @@ jobs: | |
python -m pip install bump2version | ||
- name: Tag version | ||
if: github.ref == 'refs/heads/master' | ||
if: github.ref == 'refs/heads/main' | ||
run: | | ||
git fetch origin +refs/tags/*:refs/tags/* | ||
git config user.email "[email protected]" | ||
|
@@ -163,23 +163,23 @@ jobs: | |
docker push ${HYP3_REGISTRY}/${GITHUB_REPOSITORY##*/}:test | ||
- name: Add latest tag | ||
if: github.ref == 'refs/heads/master' | ||
if: github.ref == 'refs/heads/main' | ||
run: | | ||
export SDIST_VERSION=${{ needs.package.outputs.SDIST_VERSION }} | ||
docker tag ${HYP3_REGISTRY}/${GITHUB_REPOSITORY##*/}:${SDIST_VERSION/+/_} \ | ||
${HYP3_REGISTRY}/${GITHUB_REPOSITORY##*/}:latest | ||
docker push ${HYP3_REGISTRY}/${GITHUB_REPOSITORY##*/}:latest | ||
- name: Login to GitHub Container Registry | ||
if: github.ref == 'refs/heads/master' | ||
if: github.ref == 'refs/heads/main' | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: tools-bot | ||
password: ${{ secrets.TOOLS_BOT_PAK }} | ||
|
||
- name: Publish on github container registry | ||
if: github.ref == 'refs/heads/master' | ||
if: github.ref == 'refs/heads/main' | ||
run: | | ||
export SDIST_VERSION=${{ needs.package.outputs.SDIST_VERSION }} | ||
docker tag ${HYP3_REGISTRY}/${GITHUB_REPOSITORY##*/}:${SDIST_VERSION/+/_} \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
.*gitleaks.toml$ | ||
.gitlab-ci.yml | ||
Dockerfile | ||
.*install_autoRIFT_ISCE_conda.sh$ | ||
.*single_scene.*_full.py$ | ||
.*hyp3_autorift/vend/workflow/.* | ||
.*hyp3_autorift/vend/README.md$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash --login | ||
set -e | ||
conda activate hyp3-autorift | ||
exec hyp3_autorift "$@" | ||
exec python -um hyp3_autorift "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters