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+ name : Pull Request Preview
2+
3+ on :
4+ push :
5+ pull_request :
6+
7+ jobs :
8+ deploy :
9+ permissions :
10+ id-token : write # required
11+ contents : read
12+ steps :
13+ - run : |
14+ pnpm i
15+ pnpm run build-web-app
16+ - name : Deploy to Deno Deploy
17+ uses : denoland/deployctl@v1
18+ with :
19+ project : roomy-space
20+ entrypoint : https://deno.land/std/http/file_server.ts
Original file line number Diff line number Diff line change 99jobs :
1010 # Build job
1111 build :
12+ # Disable API docs for now since we don't have that much of an API anymore.
13+ if : ' false'
1214 runs-on : ubuntu-latest
1315 permissions :
1416 contents : read
2628
2729 # Deployment job
2830 deploy :
29- if : github.event_name == 'push' && github.ref_name == 'main'
31+ if : false && github.event_name == 'push' && github.ref_name == 'main'
3032 environment :
3133 name : github-pages
3234 url : ${{ steps.deployment.outputs.page_url }}
You can’t perform that action at this time.
0 commit comments