From d2010a96b31543f116688ad9f1ed43fd2e346de0 Mon Sep 17 00:00:00 2001 From: Jojoo Date: Mon, 9 Oct 2023 18:57:11 +0800 Subject: [PATCH] [deploy] add github deploy action --- .github/workflows/vercel-preview.yaml | 65 +++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 .github/workflows/vercel-preview.yaml diff --git a/.github/workflows/vercel-preview.yaml b/.github/workflows/vercel-preview.yaml new file mode 100644 index 00000000..56396fea --- /dev/null +++ b/.github/workflows/vercel-preview.yaml @@ -0,0 +1,65 @@ +name: preview + +on: + push: + +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 + + - 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: Change Github config + # run: git config --global url."https://github.com/".insteadOf git@github.com:; + # run: git config --global url."https://".insteadOf git:// + + - name: Install dependencies + run: pnpm install --loglevel verbose + + - name: deploy on lattice testnet + run: cd packages/contracts; pnpm run deploy:testnet + + - 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 + scope: ${{secrets.TEAM_SLUG}} \ No newline at end of file