build: Bump buildbox version for master to teleport17 (#42601) #3659
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update docs webhook | |
on: | |
push: | |
branches: | |
- master | |
- branch/v* | |
workflow_dispatch: | |
jobs: | |
update-webhook: | |
name: Update docs webhook | |
runs-on: ubuntu-latest | |
environment: update-docs | |
steps: | |
- name: Call deployment webhook | |
env: | |
WEBHOOK_URL: ${{ secrets.DOCS_DEPLOY_HOOK }} | |
run: | | |
if curl --silent --fail --show-error "$WEBHOOK_URL" > /dev/null; then | |
echo "Triggered successfully" | |
fi |