-
-
Notifications
You must be signed in to change notification settings - Fork 16
39 lines (37 loc) · 1.11 KB
/
ci.yml
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
# https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions
name: CI
on:
push:
branches: [main]
pull_request:
branches:
- "**"
jobs:
build:
runs-on: ubuntu-latest
environment:
name: Preview
url: https://${{github.run_id}}--fari-community.netlify.app
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v2
# Use Bun
- name: Use Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.0.15
# Install
- name: Install
run: bun install
# Build
- name: Build
run: bun run build
# Deploy Preview
- name: Deploy Preview
if: github.ref != 'refs/heads/main' && !github.event.pull_request.head.repo.fork
run: bun run deploy:preview -- --auth ${{secrets.NETLIFY_AUTH_TOKEN}} --alias $GITHUB_RUN_ID
# Deploy Production
- name: Deploy Production
if: github.ref == 'refs/heads/main' && !github.event.pull_request.head.repo.fork
run: bun run deploy:prod -- --auth ${{secrets.NETLIFY_AUTH_TOKEN}}