Skip to content

Commit

Permalink
now working
Browse files Browse the repository at this point in the history
  • Loading branch information
lehmanju committed May 9, 2024
1 parent 6c45827 commit 6461bf3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ jobs:
id: prep-apps
shell: bash
run: |
IMAGES=$(find images -mindepth 1 -maxdepth 1 -type d -printf %f\\n | jq -R -s -c 'split("\n")[:-1]')
echo "apps=${${{ inputs.appsToBuild }}:-IMAGES}" >> $GITHUB_OUTPUT
IMAGES="$(find images -mindepth 1 -maxdepth 1 -type d -printf %f\\n | jq -R -s -c 'split("\n")[:-1]')"
INPUT="${{ inputs.appsToBuild }}"
echo "apps=${INPUT:-IMAGES}" >> $GITHUB_OUTPUT
build-and-push-image:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6461bf3

Please sign in to comment.