Skip to content

Commit

Permalink
Fix workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew W. Harn <[email protected]>
  • Loading branch information
awharn committed Mar 4, 2024
1 parent 42da67c commit ea26e5a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release download ${{ github.event.inputs.zowe-version }} -p zowe-${{ github.event.inputs.zowe-version }}-WebHelp.zip
rm -rf docs/${{ github.event.inputs.zowe-version }}
mkdir -p docs/${{ github.event.inputs.zowe-version }}
unzip -nqq zowe-${{ github.event.inputs.zowe-version }}-WebHelp.zip -d docs/${{ github.event.inputs.zowe-version }}
mv docs/${{ github.event.inputs.zowe-version }}/zowe-${{ github.event.inputs.zowe-version }}-WebHelp/* docs/${{ github.event.inputs.zowe-version }}/.
Expand Down Expand Up @@ -185,7 +186,9 @@ jobs:
ref: 'gh-pages'

- name: Create directory
run: mkdir -p docs/pr-${{github.event.number}}
run: |
rm -rf docs/pr-${{github.event.number}}
mkdir -p docs/pr-${{github.event.number}}
- name: Get Artifact
uses: actions/download-artifact@v4
Expand Down

0 comments on commit ea26e5a

Please sign in to comment.