Skip to content

Commit b81d106

Browse files
committed
OK
1 parent 411213f commit b81d106

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/update_asf_site.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
27+
./scripts/task_deploy_asf_site.sh

0 commit comments

Comments
 (0)