🧚🏻 Remove goerli from example app multichain section #2413
Workflow file for this run
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: Deploy | |
on: | |
pull_request: | |
branches-ignore: | |
- 'changeset-release/*' | |
push: | |
branches: | |
- master | |
jobs: | |
deploy-apps: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '16.14' | |
- run: npm i -g [email protected] | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm build | |
- name: Deploy usedapp-docs.netlify.app | |
uses: nwtgck/[email protected] | |
with: | |
enable-commit-comment: true | |
enable-pull-request-comment: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
overwrites-pull-request-comment: true | |
production-deploy: ${{ github.event_name != 'pull_request' }} | |
publish-dir: packages/docs/build | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_DOCS_SITE_ID }} | |
- name: Deploy example.usedapp.io | |
uses: nwtgck/[email protected] | |
with: | |
enable-commit-comment: true | |
enable-pull-request-comment: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
overwrites-pull-request-comment: true | |
production-deploy: ${{ github.event_name != 'pull_request' }} | |
publish-dir: packages/example/build | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_EXAMPLE_SITE_ID }} | |
- name: Deploy usedapp.io | |
uses: nwtgck/[email protected] | |
with: | |
enable-commit-comment: true | |
enable-pull-request-comment: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
overwrites-pull-request-comment: true | |
production-deploy: ${{ github.event_name != 'pull_request' }} | |
publish-dir: packages/website/dist | |
env: | |
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_LANDING_SITE_ID }} |