-
Notifications
You must be signed in to change notification settings - Fork 11
47 lines (41 loc) · 1.4 KB
/
website-builder.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
40
41
42
43
44
45
46
47
name: Deploy to Netlify
on:
push:
branches:
- website-v2
jobs:
prepare-website:
uses: ./.github/workflows/base-jobs.yml
website:
name: Deploy the Rascal website
runs-on: buildjet-4vcpu-ubuntu-2204
needs: prepare-website
steps:
# Download prepared sources from base
- name: Download sources
uses: actions/download-artifact@v3
with:
name: sources
- name: Untar files
run: tar -xvf sources.tar
# Production deploy
- name: Netlify Deploy
uses: jsmrcaga/[email protected]
with:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_API_KEY }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_DEPLOY_TO_PROD: true
install_command: yarn install --frozen-lockfile
build_command: yarn build
# Production reindex
- name: Algolia crawler creation and crawl
uses: algolia/[email protected]
id: algolia_crawler
with:
crawler-api-base-url: 'https://crawler.algolia.com/api/1/'
crawler-user-id: ${{ secrets.CRAWLER_USER_ID }}
crawler-api-key: ${{ secrets.CRAWLER_API_KEY }}
algolia-app-id: ${{ secrets.ALGOLIA_APP_ID }}
algolia-api-key: ${{ secrets.ALGOLIA_API_KEY }}
site-url: 'https://www.rascal-mpl.org'
crawler-name: 'rascal'