Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marjo-luc committed Oct 16, 2024
1 parent 4cffd86 commit 72f121a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/build-ogc-app-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ jobs:
with:
env-file: .env
- name: Build OGC application package executable
run: docker build -t ${{ env.REPO_NAME }}:${{ env.BRANCH }} --build-arg BASE_IMAGE_NAME=${{ env.BASE_IMAGE_NAME }} -f docker/Dockerfile .
run: docker build -t ${{ env.REPO_NAME }}:${{ env.BRANCH }} \
--build-arg BASE_IMAGE_NAME=${{ env.BASE_IMAGE_NAME }} \
--build-arg REPO_NAME=${{ env.REPO_NAME }} \
--build-arg BRANCH=${{ env.BRANCH }} \
--build-arg REPO_URL_WITH_TOKEN=${{ env.REPO_URL_WITH_TOKEN }} \
--build-arg BUILD_CMD=${{ env.BUILD_CMD }} \
-f docker/Dockerfile .
- name: Build OGC application package process cwl
run: python3 generate_app_pack.py algorithm_configs/algorithm_config.yaml $(basename ${ogc_container_url})
- name: Push OGC application package executable to image registry
Expand Down

0 comments on commit 72f121a

Please sign in to comment.