Skip to content

Commit

Permalink
ci: add deploy ci
Browse files Browse the repository at this point in the history
  • Loading branch information
noyyyy committed Dec 2, 2023
1 parent 08794fd commit 1057985
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: nightly

on:
workflow_dispatch:


env:
FOUNDRY_PROFILE: ci
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}

permissions:
pull-requests: write
deployments: write
contents: write

jobs:
build:
strategy:
fail-fast: true

name: MUD project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
ref: "develop" # checkout develop

- uses: pnpm/[email protected]
name: Install pnpm
id: pnpm-install
with:
version: 8
run_install: false

- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: Install dependencies
run: pnpm install

- name: deploy on alt layer testnet
run: cd packages/contracts; pnpm run deploy:baseSepolia

- name: build
run: pnpm build

- name: Vercel Action
uses: amondnet/vercel-action@v25

with:
vercel-token: ${{ secrets.VERCEL_TOKEN }} # Required
vercel-org-id: ${{ secrets.ORG_ID}} #Required
vercel-project-id: ${{ secrets.PROJECT_ID}} #Required
working-directory: ./packages/client/dist
vercel-args: "--prod" #Optional
scope: ${{secrets.TEAM_SLUG}}

0 comments on commit 1057985

Please sign in to comment.