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.
bash
1 parent 97e0b2e commit 8916f50Copy full SHA for 8916f50
.github/workflows/build_pdf.yml
@@ -13,17 +13,9 @@ jobs:
13
steps:
14
- name: Checkout repository
15
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
25
- name: Build Manual PDF
26
- run: ./docs/soar_manual/build.sh
+ # use bash explicitly in case the container env can't properly interpret the shebang
+ run: bash ./docs/soar_manual/build.sh
27
- name: Upload Artifacts
28
uses: actions/upload-artifact@v4
29
with:
0 commit comments