fix: ios improvements: always display full ui & no magnifier on double tap anymore fix: regression: connect to p2p peers
29 lines
959 B
YAML
29 lines
959 B
YAML
name: Vercel Deploy Preview
|
|
env:
|
|
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
|
|
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
|
|
on:
|
|
issue_comment:
|
|
types: [created]
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
# todo skip already created deploys on that commit
|
|
if: >-
|
|
github.event.issue.pull_request != '' &&
|
|
(
|
|
contains(github.event.comment.body, '/deploy')
|
|
)
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Install Global Dependencies
|
|
run: npm install --global vercel pnpm
|
|
- name: Pull Vercel Environment Information
|
|
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
|
|
- name: Build Project Artifacts
|
|
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
|
|
- name: Deploy Project Artifacts to Vercel
|
|
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
|