ci: update vercel output #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: nightly | |
on: | |
workflow_dispatch: | |
push: | |
env: | |
FOUNDRY_PROFILE: ci | |
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} | |
W3S_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 | |
- uses: pnpm/action-setup@v2.2.4 | |
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 base sepolia testnet | |
# run: cd packages/contracts; pnpm run deploy:baseSepolia | |
- name: build contracts output | |
run: cd packages/contracts; 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: . | |
vercel-args: "--prod" #Optional | |
scope: ${{secrets.TEAM_SLUG}} |