Skip to content

Commit f966bf8

Browse files
authored
Merge pull request #29 from mapswipe/fix/pnpm-install-script
fix(docker): fix pnpm install script
2 parents 5bccf8c + 2313a23 commit f966bf8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/docker-push-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
REPO_NAME: ghcr.io/${{ github.repository }}
2222
run: |
2323
REPO_NAME=$(echo $REPO_NAME | tr '[:upper:]' '[:lower:]')
24-
TAG="0.3.0-dev"
24+
TAG="0.3.1-dev"
2525
2626
# Docker
2727
echo "docker_image_name=${REPO_NAME}" >> $GITHUB_OUTPUT

deploy.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cd "$BASE_DIR"
1010
echo "[INFO] Installing dependencies for transpiling functions for Firebase..."
1111
cd /tmp/
1212

13-
pnpm --filter "$FIREBASE_FUNCTIONS_DIR" install --frozen-lockfile
13+
pnpm --dir "$FIREBASE_FUNCTIONS_DIR" install --frozen-lockfile
1414

1515
echo "[INFO] Transpiling functions for Firebase..."
1616
cd "$FIREBASE_FUNCTIONS_DIR"

docker_entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ cd "$BASE_DIR"
1414
# So, we need to switch to /tmp directory as a workaround
1515
echo "[INFO] Installing dependencies for transpiling functions for Firebase..."
1616
cd /tmp/
17-
pnpm --filter "$FIREBASE_FUNCTIONS_DIR" install --frozen-lockfile
17+
pnpm --dir "$FIREBASE_FUNCTIONS_DIR" install --frozen-lockfile
1818

1919
echo "[INFO] Transpiling functions for Firebase..."
2020
cd "$FIREBASE_FUNCTIONS_DIR"

0 commit comments

Comments
 (0)