prevent building empty package on pr

This commit is contained in:
Vargas, Dan 2021-10-01 14:16:30 -05:00 committed by Dan Vargas
parent 89a6f81123
commit 78d0ce156f
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ jobs:
- name: Build Packages
run: |
PACKAGES=$(jq '.[]' -r ${HOME}/files.json | awk -F/ '{ print $2 "-" $3 }' | sort -u)
PACKAGES=$(jq '.[]' -r ${HOME}/files.json | awk -F/ '$2 && $3{ print $2 "-" $3 }' | sort -u)
echo "Packages: $PACKAGES"
docker pull docker.pkg.github.com/engineer-man/piston/repo-builder:latest
docker build -t repo-builder repo