Skip to content
This repository was archived by the owner on Nov 1, 2025. It is now read-only.

Commit 5ea9ea9

Browse files
committed
removes pnpm from build-push-docker-manage-ui
1 parent 1a22524 commit 5ea9ea9

File tree

1 file changed

+3
-21
lines changed

1 file changed

+3
-21
lines changed

.github/workflows/docker-manage-ui.yml

Lines changed: 3 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -31,39 +31,21 @@ jobs:
3131
key: ${{ runner.os }}-buildx-${{ github.sha }}
3232
restore-keys: ${{ runner.os }}-buildx-
3333

34-
# 4. Cache pnpm store
35-
- name: Cache pnpm store
36-
uses: actions/cache@v4
37-
with:
38-
path: ~/.pnpm-store
39-
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
40-
restore-keys: ${{ runner.os }}-pnpm-
41-
42-
# 5. Set up Node.js and pnpm
43-
- name: Set up Node.js
44-
uses: actions/setup-node@v4
45-
with:
46-
node-version: 22
47-
cache: "pnpm"
48-
49-
- name: Install pnpm
50-
run: npm install -g [email protected]
51-
52-
# 6. Extract metadata
34+
# 4. Extract metadata
5335
- name: Extract metadata
5436
id: meta
5537
run: |
5638
echo "REPO_NAME=${GITHUB_REPOSITORY##*/}" >> "$GITHUB_OUTPUT"
5739
echo "SHORT_SHA=${GITHUB_SHA::7}" >> "$GITHUB_OUTPUT"
5840
59-
# 7. Login to Docker Hub
41+
# 5. Login to Docker Hub
6042
- name: Log in to Docker Hub
6143
uses: docker/login-action@v3
6244
with:
6345
username: ${{ secrets.DOCKER_USERNAME }}
6446
password: ${{ secrets.DOCKERHUB_TOKEN }}
6547

66-
# 8. Build and push image
48+
# 6. Build and push image
6749
- name: Build and push production image
6850
uses: docker/build-push-action@v6
6951
with:

0 commit comments

Comments
 (0)