Skip to content

Commit

Permalink
fix: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JackHamer09 committed Feb 1, 2024
1 parent 8f0cb65 commit 7bcd601
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
- name: "Build: dapp"
run: yarn run ci:build:goerli

- name: "Setup node@18"
uses: actions/setup-node@v2
with:
node-version: 18

- name: "Deploy: preview"
uses: matter-labs/action-hosting-deploy@main
with:
Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ jobs:
- name: "Deploy target: prod-mainnet"
run: yarn run ci:build:mainnet

- name: "Setup node@18"
uses: actions/setup-node@v2
with:
node-version: 18

- uses: matter-labs/action-hosting-deploy@main
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
Expand All @@ -87,8 +93,19 @@ jobs:
projectId: zsync-dapp-checkout
channelID: live

- name: "Setup node@16"
uses: actions/setup-node@v2
with:
node-version: 16

- name: "Build goerli"
run: yarn run ci:build:goerli

- name: "Setup node@18"
uses: actions/setup-node@v2
with:
node-version: 18

- uses: matter-labs/action-hosting-deploy@main
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ jobs:
- name: "Deploy target: goerli"
run: yarn run ci:build:goerli

- name: "Setup node@18"
uses: actions/setup-node@v2
with:
node-version: 18

- uses: matter-labs/action-hosting-deploy@main
with:
repoToken: "${{ secrets.GITHUB_TOKEN }}"
Expand Down

0 comments on commit 7bcd601

Please sign in to comment.