Skip to content

Commit bbcbd82

Browse files
committed
Update workflows to use bash script for build
1 parent 2c9f0c8 commit bbcbd82

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ jobs:
4343
run: dotnet tool restore
4444

4545
- name: Run Build
46-
run: dotnet docfx docfx.json
46+
run: |
47+
chmod +x ./build.sh
48+
./build.sh
4749
4850
- name: Setup Pages
4951
uses: actions/configure-pages@v5

.github/workflows/pullrequest.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ jobs:
4343
run: dotnet tool restore
4444

4545
- name: Run Build
46-
run: dotnet docfx docfx.json
46+
run: |
47+
chmod +x ./build.sh
48+
./build.sh
4749
4850
complete:
4951
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)