Skip to content

Commit

Permalink
fix: remove invalid workflow step (#6246)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewkeil committed Jan 2, 2024
1 parent b7925f6 commit 9262064
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,6 @@ jobs:
env:
DEPLOY_REF: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.ref || 'stable' }}
steps:
# Validation step for workflow_dispatch ref input
- name: Validate Ref
if: github.event_name == 'workflow_dispatch'
run: |
if git rev-parse "${{ env.DEPLOY_REF }}" >/dev/null 2>&1; then
echo "Ref ${{ env.DEPLOY_REF }} is valid."
else
echo "Error: Ref ${{ env.DEPLOY_REF }} is not a valid branch, tag or commit." >&2
exit 1
fi
# Log out the ref being deployed
- name: Log Deployment Ref
if: github.event_name == 'workflow_dispatch'
Expand Down

0 comments on commit 9262064

Please sign in to comment.