-
Notifications
You must be signed in to change notification settings - Fork 45
70 lines (63 loc) · 2.08 KB
/
Copy pathpreview.yml
File metadata and controls
70 lines (63 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Deploy PR previews
on:
pull_request:
types:
- opened
- reopened
- synchronize
- closed
branches:
- main
concurrency: preview-${{ github.ref }}
jobs:
deploy-preview:
runs-on: ubuntu-latest
steps:
- name: Set up environment variables
run: |
echo "REACT_APP_PREVIEW_BASE=pr-${{ github.event.pull_request.number }}" >> $GITHUB_ENV
echo "REACT_APP_DEPLOY_ENV=PREVIEW" >> $GITHUB_ENV
echo "REACT_APP_PUBLIC_URL=https://pushchain.github.io" >> $GITHUB_ENV
echo "GITHUB_PR_NUMBER=${{ github.event.pull_request.number }}" >> $GITHUB_ENV
echo "REACT_APP_BASE_URL=/push-chain-website/pr-preview/pr-${{ github.event.pull_request.number }}" >> $GITHUB_ENV
echo "WINDSURF_API_KEY=${{ secrets.WINDSURF_API_KEY }}" >> $GITHUB_ENV
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: true
swap-storage: true
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install Corepack & Yarn 4.2.2
run: |
corepack enable
corepack prepare yarn@4.2.2 --activate
yarn --version
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: yarn
- name: Install and Build
if: github.event.action != 'closed' # You might want to skip the build if the PR has been closed
run: |
yarn install --no-immutable
yarn build:pr:preview
- name: Deploy preview
uses: rossjrw/pr-preview-action@v1.4.7
with:
source-dir: ./build/
umbrella-dir: pr-preview
- uses: rossjrw/pr-preview-action@v1.4.7
if: github.event.action == 'closed' || github.event.pull_request.merged
with:
umbrella-dir: pr-preview
source-dir: ./build/
action: remove