File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed
Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments