Skip to content

Commit 8916f50

Browse files
committed
try running PDF built with explicit bash call
1 parent 97e0b2e commit 8916f50

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

.github/workflows/build_pdf.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,9 @@ jobs:
1313
steps:
1414
- name: Checkout repository
1515
uses: actions/checkout@v4
16-
- name: Debug environment
17-
run: |
18-
echo "Current directory: $(pwd)"
19-
echo "Files in current directory:"
20-
ls -la
21-
echo "Files in docs directory:"
22-
ls -la ./docs
23-
echo "Files in docs/soar_manual directory:"
24-
ls -la ./docs/soar_manual
2516
- name: Build Manual PDF
26-
run: ./docs/soar_manual/build.sh
17+
# use bash explicitly in case the container env can't properly interpret the shebang
18+
run: bash ./docs/soar_manual/build.sh
2719
- name: Upload Artifacts
2820
uses: actions/upload-artifact@v4
2921
with:

0 commit comments

Comments
 (0)