Skip to content

Commit

Permalink
Fix #465, Reject CI doc deployment request if using cache
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Apr 21, 2022
1 parent 8391462 commit 18a764b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-deploy-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,12 @@ jobs:
target: ${{ fromJson(inputs.target) }}

steps:
- name: Reject non-compatible deployment settings
if: ${{ inputs.deploy == true && inputs.cache-key != '' }}
run: |
echo "Deployment when using cache not supported due to password fail issue"
exit -1
- name: Get cache if supplied
id: cache-src-bld
if: ${{ inputs.cache-key != '' }}
Expand Down

0 comments on commit 18a764b

Please sign in to comment.