Skip to content

Commit

Permalink
install dependencies before docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
bambanah committed Aug 21, 2024
1 parent fcc55b9 commit 3648a62
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,13 @@ jobs:
id-token: write

steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
cache: "pnpm"
- run: pnpm install --frozen-lockfile

- name: Log in to the Container registry
uses: docker/[email protected]
Expand Down

0 comments on commit 3648a62

Please sign in to comment.