File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ on : [push]
2+ jobs :
3+ publish :
4+ runs-on : ubuntu-latest
5+ steps :
6+ # build your site for deployment... in this case the `public` folder is being deployed
7+ - name : Checkout
8+ uses : actions/checkout@v3
9+
10+ - name : Build Site
11+ run : |
12+ npm install
13+ npm run build
14+
15+ - name : Publish
16+ uses : South-Paw/action-netlify-cli@v2
17+ id : netlify
18+ with :
19+ # be sure to escape any double quotes with a backslash
20+ args : ' deploy --json --dir \"./public\" --message \"draft [${{ github.sha }}]\"'
21+ env :
22+ NETLIFY_AUTH_TOKEN : ${{ secrets.NETLIFY_AUTH_TOKEN }}
23+ NETLIFY_SITE_ID : ${{ secrets.NETLIFY_SITE_ID }}
24+
25+ # and access outputs in other steps with ${{ steps.netlify.outputs.OUTPUT_ID }}
Original file line number Diff line number Diff line change 1- [functions ]
2- included_files = [" ./netlify/functions/templates/**" ]
3- node_bundler = " esbuild"
4- external_node_modules = [" @sparticuz/chromium" ]
5-
61[[redirects ]]
72from = " /download/app/*"
83to = " https://github.com/hoppscotch/releases/releases/latest/download/:splat"
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments