Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marjo-luc committed Oct 23, 2024
1 parent 65b979d commit 6371f72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-ogc-app-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ jobs:
- name: Build OGC application package docker image
run: |
docker build -t ogc_${{ env.REPO_NAME }}:${{ env.BRANCH }} \
--build-arg PROCESS_CWL=shah-get-dem-nasa-ogc.${{ env.BRANCH }}.process.cwl \
--build-arg GITHUB_WORKSPACE=${{ env.GITHUB_WORKSPACE }} \
--build-arg PROCESS_CWL=${{ env.ALGORITHM_NAME }}.${{ env.BRANCH }}.process.cwl \
-f docker/Dockerfile.ogc .
- name: Push algorithm docker image to GitLab
run: echo Push to image registry not yet implemented.
Expand Down
1 change: 1 addition & 0 deletions generate_build_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ def generate_config(data):
f.write(f"REPO_URL_WITH_TOKEN={data.get('repository_url')}\n")
f.write(f"REPO_NAME={repo_name}\n")
f.write(f"BRANCH={data.get('algorithm_version')}\n")
f.write(f"ALGORITHM_NAME={data.get('algorithm_name')}\n")
if data.get('build_command'):
f.write(f"BUILD_CMD={data.get('build_command')}\n")
print("Completed writing config file")
Expand Down

0 comments on commit 6371f72

Please sign in to comment.