Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker-push-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
REPO_NAME: ghcr.io/${{ github.repository }}
run: |
REPO_NAME=$(echo $REPO_NAME | tr '[:upper:]' '[:lower:]')
TAG="0.3.0-dev"
TAG="0.3.1-dev"

# Docker
echo "docker_image_name=${REPO_NAME}" >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ cd "$BASE_DIR"
echo "[INFO] Installing dependencies for transpiling functions for Firebase..."
cd /tmp/

pnpm --filter "$FIREBASE_FUNCTIONS_DIR" install --frozen-lockfile
pnpm --dir "$FIREBASE_FUNCTIONS_DIR" install --frozen-lockfile

echo "[INFO] Transpiling functions for Firebase..."
cd "$FIREBASE_FUNCTIONS_DIR"
Expand Down
2 changes: 1 addition & 1 deletion docker_entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ cd "$BASE_DIR"
# So, we need to switch to /tmp directory as a workaround
echo "[INFO] Installing dependencies for transpiling functions for Firebase..."
cd /tmp/
pnpm --filter "$FIREBASE_FUNCTIONS_DIR" install --frozen-lockfile
pnpm --dir "$FIREBASE_FUNCTIONS_DIR" install --frozen-lockfile

echo "[INFO] Transpiling functions for Firebase..."
cd "$FIREBASE_FUNCTIONS_DIR"
Expand Down