Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marjo-luc committed Oct 10, 2024
1 parent dd13982 commit dbe8a85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-ogc-app-pack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Generate build config for algorithm
run: python3 generate_build_config.py algorithm_configs/algorithm_config.yaml
run: python3 ${{ github.workspace }}/generate_build_config.py ${{ github.workspace }}/algorithm_configs/algorithm_config.yaml
- name: Source build config environment variables
run: echo ${{ github.workspace }} && source ${{ github.workspace }}/config.txt
- name: Build OGC application package executable
run: echo ${{ env.REPO_NAME }}
#run: docker build -t ${{REPO_NAME}}:${{BRANCH}} -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})
run: python3 ${{ github.workspace }}/generate_app_pack.py ${{ github.workspace }}/algorithm_configs/algorithm_config.yaml $(basename ${ogc_container_url})
- name: Push OGC application package executable to image registry
run: echo Push to image registry not yet implemented.

Expand Down

0 comments on commit dbe8a85

Please sign in to comment.