Feat: Integrate Reown AppKit; replace Web3 Onboard; add wallet priorities and Google socials #686
Workflow file for this run
This file contains hidden or 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
| # .github/workflows/preview.yml | |
| name: DeployQA | |
| on: | |
| push: | |
| branches: [master, staging] | |
| pull_request_target: | |
| branches: | |
| - master | |
| workflow_dispatch: | |
| inputs: | |
| release: | |
| description: 'release type (qa release only)' | |
| required: true | |
| default: 'qa' | |
| targetbranch: | |
| description: 'target deployment branch' | |
| required: true | |
| default: 'staging' | |
| env: | |
| VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
| VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
| jobs: | |
| authorize: | |
| environment: ${{ github.event_name == 'pull_request_target' && | |
| github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: true | |
| release: | |
| needs: authorize | |
| name: Release | |
| if: "github.event_name == 'workflow_dispatch' && github.event.inputs.release == 'qa'" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - name: setup git | |
| run: | | |
| git config --local user.email "[email protected]" | |
| git config --local user.name "Techadmin" | |
| npm install -g auto-changelog | |
| - name: update version qa | |
| run: | | |
| npm version minor -m "chore: release qa version %s [skip build]" | |
| git push https://${{ secrets.GIT_AUTH }}@github.com/GoodDollar/GoodProtocolUI master:${{ github.event.inputs.targetbranch }} --force --follow-tags | |
| git push https://${{ secrets.GIT_AUTH }}@github.com/GoodDollar/GoodProtocolUI master --follow-tags | |
| preview: | |
| needs: authorize | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: preview | |
| url: ${{ steps.deploy.outputs.url }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha || github.ref }} | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: yarn | |
| - run: yarn install --immutable | |
| - id: check_branch | |
| run: echo "::set-output name=branch::$(if [[ "${{ github.ref }}" == *"/staging" ]]; then echo 'staging'; else echo 'master'; fi)" | |
| - run: yarn vercel pull --yes --environment="preview" --git-branch=${{ steps.check_branch.outputs.branch }} --token=${{ secrets.VERCEL_TOKEN }} | |
| - run: yarn vercel build --token=${{ secrets.VERCEL_TOKEN }} | |
| - id: deploy | |
| run: echo "::set-output name=url::$(yarn vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }})" |