Skip to content

Commit

Permalink
Fix EOF error
Browse files Browse the repository at this point in the history
  • Loading branch information
ga84jog committed Oct 24, 2024
1 parent 170b2c2 commit 81386c4
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ env:

jobs:
build-and-push:
# concurrency:
# group: build
# |-> 1. pull code
# |-> 2. set up docker buildx
# |-> 3. login to docker hub
Expand Down Expand Up @@ -114,9 +112,9 @@ jobs:
mkdir -p $DOCKER_CACHE_DIR/.buildx-cache
mkdir -p $DOCKER_CACHE_DIR/.buildx-image-cache/tensorpod/pymimic3/
echo "Copying docker cache from $DOCKER_CACHE_DIR/.buildx-cache to $DOCKER_CACHE_DIR/${{ runner.name }}/buildx-cache"
mkdir -p $DOCKER_CACHE_DIR/${{ runner.name }}/buildx-cache"
cp -r $DOCKER_CACHE_DIR/.buildx-cache $DOCKER_CACHE_DIR/${{ runner.name }}/buildx-cache
echo "Copying docker cache from $DOCKER_CACHE_DIR/.buildx-cache to $DOCKER_CACHE_DIR/${{ runner.name }}/.buildx-cache"
mkdir -p "$DOCKER_CACHE_DIR/${{ runner.name }}/.buildx-cache"
cp -r "$DOCKER_CACHE_DIR/.buildx-cache" "$DOCKER_CACHE_DIR/${{ runner.name }}/.buildx-cache"
echo "::group::DOCKER_CACHE_DIR"
echo $DOCKER_CACHE_DIR
Expand Down

0 comments on commit 81386c4

Please sign in to comment.