Skip to content

Commit d514953

Browse files
authored
Merge pull request #44 from jaredwray/fix-fixing-workflows-to-use-npm-for-docker
fix: fixing workflows to use npm for docker
2 parents def65ba + 7f63c7a commit d514953

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/deploy-site.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ jobs:
2929
node-version: ${{ matrix.node-version }}
3030

3131
- name: Install Dependencies
32-
run: npm install pnpm -g && pnpm install
32+
run: npm install
3333

3434
- name: Build
35-
run: pnpm build
35+
run: npm run build
3636

3737
# Setup gcloud CLI
3838
- name: Authenticate with Google Cloud

.github/workflows/docker-publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
node-version: 22
2020

2121
- name: Install Dependencies
22-
run: npm install pnpm -g && pnpm install
22+
run: npm install
2323

2424
- name: Build
25-
run: pnpm build
25+
run: npm run build
2626

2727
- name: Set up Docker Buildx
2828
uses: docker/setup-buildx-action@v3

0 commit comments

Comments
 (0)