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 411213f commit b81d106Copy full SHA for b81d106
.github/workflows/update_asf_site.yml
@@ -0,0 +1,27 @@
1
+name: Build Jekyll Site
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ workflow_dispatch:
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - name: Checkout repository
14
+ uses: actions/checkout@v4
15
16
+ - name: Set up Ruby
17
+ uses: ruby/setup-ruby@v1
18
+ with:
19
+ bundler-cache: true
20
21
+ - name: Install dependencies
22
+ run: |
23
+ bundle install
24
25
+ - name: Build website
26
27
+ ./scripts/task_deploy_asf_site.sh
0 commit comments