Skip to content

Commit ba24b4f

Browse files
committed
More debugging
1 parent d38fe55 commit ba24b4f

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

.github/workflows/pr-build.yaml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,17 @@ jobs:
6161
steps:
6262
- name: Ensure Output Directory Exists
6363
run: |
64-
sudo mkdir -p "${{ inputs.outputPath }}"
65-
sudo chmod -R 777 "${{ inputs.outputPath }}"
66-
echo "Directory created at: ${{ inputs.outputPath }}"
67-
ls -ld "${{ inputs.outputPath }}"
68-
ls -la "${{ inputs.outputPath }}"
69-
64+
# sudo mkdir -p "${{ inputs.outputPath }}"
65+
# sudo chmod -R 777 "${{ inputs.outputPath }}"
66+
# echo "Directory created at: ${{ inputs.outputPath }}"
67+
# ls -ld "${{ inputs.outputPath }}"
68+
# ls -la "${{ inputs.outputPath }}"
69+
sudo mkdir -p "${{ github.workspace }}/publish"
70+
sudo chmod -R 777 "${{ github.workspace }}/publish"
71+
echo "Directory created at: ${{ github.workspace }}/publish"
72+
ls -ld "${{ github.workspace }}/publish"
73+
ls -la "${{ github.workspace }}/publish"
74+
7075
- name: Checkout Repository
7176
uses: actions/checkout@v2
7277

0 commit comments

Comments
 (0)