Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: David Fridrich <[email protected]>
  • Loading branch information
gauron99 committed Jan 8, 2025
1 parent b9cd1fb commit 0b08504
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/deploy-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,18 +103,19 @@ jobs:
echo "build with host"
FUNC_ENABLE_HOST_BUILDER=1 FUNC_BUILDER=host FUNC_CONTAINER=false FUNC_REGISTRY=docker.io/4141gauron3268 f build
else
echo "build with pack"
echo "build with pack"
#TODO this might be moved up above the if statement for HOSTBUILDER?
if [ ${{matrix.language}} == "typescript" ];then
npm install
elif [ ${{matrix.language}} == "rust"]; then
cargo build
fi
FUNC_REGISTRY=docker.io/4141gauron3268 f build
fi
if [ ${{matrix.language}} == "typescript" ];then
npm install
elif [ ${{matrix.language}} == "rust"]; then
cargo build
fi
############################## FUNC RUN ##############################
f run &
FUNC_ENABLE_HOST_BUILDER=1 f run &
#capture process ID
RUN_PID=$!
Expand Down

0 comments on commit 0b08504

Please sign in to comment.