Skip to content

Commit

Permalink
update docker builds
Browse files Browse the repository at this point in the history
  • Loading branch information
rkm committed Mar 26, 2024
1 parent 1db7378 commit 184522b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ jobs:
- name: build image
run: |
set -euxo pipefail
cd "software/${{ matrix.package }}"
# img="ghcr.io/smi/fsl:$(grep FSL_VERSION= Dockerfile | cut -d'"' -f2)"
# docker build . --tag "$img"
package="${{ matrix.package }}"
cd "software/$package"
img="ghcr.io/smi/${package,,}:$(grep _VERSION= Dockerfile | cut -d'"' -f2)"
echo "$img"
docker build . --tag "$img"
# echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u $ --password-stdin
# docker push "$img"

0 comments on commit 184522b

Please sign in to comment.