We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45e13c2 commit 9e569a4Copy full SHA for 9e569a4
.github/workflows/build.yml
@@ -0,0 +1,32 @@
1
+name: Build static site
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-24.04
10
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v4
14
15
+ - name: Setup Ruby
16
+ uses: ruby/setup-ruby@v1
17
+ with:
18
+ bundler-cache: true
19
20
+ - name: Build site
21
+ run: bundle exec jekyll build
22
+ env:
23
+ URL: http://developer.rebble.io
24
+ HTTPS_URL: https://developer.rebble.io
25
+ RACK_ENV: production
26
+ SKIP_DOCS: true # TODO: setup docs generation
27
28
+ - name: Upload artifact
29
+ uses: actions/upload-artifact@v4
30
31
+ name: site-build
32
+ path: __public__
0 commit comments