Skip to content

Commit

Permalink
updte
Browse files Browse the repository at this point in the history
  • Loading branch information
dfornika committed Jun 7, 2024
1 parent f8f7bb4 commit 5b623b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/build_container_images_wave.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

mkdir -p artifacts

for env_yaml in ../environments/*.yml; do
for env_yaml in environments/*.yml; do
image_name=$(head -n 1 $env_yaml | cut -d ' ' -f 2)
echo "building image ${image_name} from file ${env_yaml}..."
wave \
Expand All @@ -17,7 +17,7 @@ for env_yaml in ../environments/*.yml; do
| tee ${image_name}.json
echo "done building image ${image_name}"
cp ${image_name}.json artifacts/

done


6 changes: 6 additions & 0 deletions .github/workflows/build_containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,9 @@ jobs:
- name: Build images
run: |
.github/scripts/build_container_images_wave.sh
- name: Upload Artifacts
uses: actions/upload-artifact@v4
if: always()
with:
name: artifacts-BCCDC-PHL-routine-assembly-build-containers-${{ github.run_id }}.${{ github.run_attempt }}
path: artifacts

0 comments on commit 5b623b2

Please sign in to comment.