Skip to content

Commit

Permalink
wip: testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgilman committed Sep 3, 2024
1 parent 16ec560 commit 233b3a2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,15 @@ jobs:
id: image
run: |
EARTHFILE='${{ matrix.earthfile }}'
PATH="${EARTHFILE%+*}"
TARGET="${EARTHFILE#*+}"
RESULT='${{ steps.run.outputs.result }}'
# If the path is just ".", then we omit it
if [[ "$PATH" == "." ]]; then
EARTHFILE="$TARGET"
fi
IMAGE="$(echo "$RESULT" | jq -r ".images[\"$EARTHFILE\"]")"
if [[ "$IMAGE" == "null" ]]; then
Expand Down

0 comments on commit 233b3a2

Please sign in to comment.