Skip to content

Commit

Permalink
Move dependencies installation step
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelkost committed Jun 6, 2024
1 parent b165f49 commit 9bca557
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ jobs:
working-directory: main/website
run: yarn install --frozen-lockfile

- name: Install dependencies (upcoming)
working-directory: upcoming/website
run: yarn install --frozen-lockfile

- name: Download language docs
working-directory: upcoming/website
run: |
Expand All @@ -65,10 +69,6 @@ jobs:
GITHUB_ORIGIN: ${{ steps.setup-pages.outputs.origin }}
GITHUB_BASE_PATH: ${{ steps.setup-pages.outputs.base_path }}

- name: Install dependencies (upcoming)
working-directory: upcoming/website
run: yarn install --frozen-lockfile

- name: Build webpage for `upcoming` branch
working-directory: upcoming/website
run: yarn build
Expand Down

0 comments on commit 9bca557

Please sign in to comment.