-
Notifications
You must be signed in to change notification settings - Fork 5
71 lines (62 loc) · 1.93 KB
/
publish-app.yaml
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
71
# NOT WORKING: GH Pages does not render app correctly
# TODO: Experiment with netlify in a GH action (low priority)
on:
workflow_dispatch:
push:
branches:
- main
paths:
- 'app/**'
name: Publish App to Netlify
jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
pages: write
id-token: write
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Install R
uses: r-lib/actions/setup-r@v2
with:
r-version: '4.2.3'
- name: Install R Dependencies
uses: r-lib/actions/setup-renv@v2
with:
cache-version: 1
- name: Compile application (custom)
run: |
source("utils.R"); build_app()
shell: Rscript {0}
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
cache: ''
- name: Install netlifly cli
run: npm install [email protected] -g
- name: Deploy to netlify
id: netlify_deploy
run: |
prod_flag=""
if [ "$BRANCH_NAME" = "main" ]; then prod_flag="--prod"; fi
netlify deploy \
--dir _site \
--site ${{ secrets.NETILIFY_SITE_ID }} \
--auth ${{ secrets.NETLIFY_AUTH_TOKEN }} \
$prod_flag
# Use an Action deploy to push the artifact onto Netlify
- name: Deploy to Net lify
id: deployment
uses: jsmrcaga/[email protected]
if: ${{ false }}
with:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETILIFY_SITE_ID }}
NETLIFY_DEPLOY_MESSAGE: "Prod deploy v${{ github.ref }}"
NETLIFY_DEPLOY_TO_PROD: true
build_directory: _site
install_command: "echo Skipping installing the dependencies"
build_command: "echo Skipping building the web files"