Deploy Vector Preview Sites #13
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: Deploy Vector Preview Sites | ||
on: | ||
workflow_run: | ||
workflows: ["Call Build Preview"] | ||
types: | ||
- completed | ||
jobs: | ||
deploy_vector_preview_site: | ||
uses: ./.github/workflows/create_preview_sites.yml | ||
with: | ||
APP_ID: "d1a7j77663uxsc" | ||
APP_NAME: "vector.dev" | ||
REQUEST_TOKEN: ${{ secrets.REQUEST_TOKEN }} | ||
Check failure on line 15 in .github/workflows/build_preview_sites.yml GitHub Actions / Deploy Vector Preview SitesInvalid workflow file
|
||
REQUEST_MESSAGE: ${{ secrets.REQUEST_MESSAGE }} | ||
ENDPOINT: ${{ secrets.BUILDER_ENDPOINT }} | ||
deploy_rust_doc_preview_site: | ||
uses: ./.github/workflows/create_preview_sites.yml | ||
with: | ||
APP_ID: "d1hoyoksbulg25" | ||
APP_NAME: "Rust Doc" | ||
REQUEST_TOKEN: ${{ secrets.REQUEST_TOKEN }} | ||
REQUEST_MESSAGE: ${{ secrets.REQUEST_MESSAGE }} | ||
ENDPOINT: ${{ secrets.BUILDER_ENDPOINT }} | ||
deploy_vrl_playground_preview_site: | ||
uses: ./.github/workflows/create_preview_sites.yml | ||
with: | ||
APP_ID: "d2lr4eds605rpz" | ||
APP_NAME: "VRL Playground" | ||
REQUEST_TOKEN: ${{ secrets.REQUEST_TOKEN }} | ||
REQUEST_MESSAGE: ${{ secrets.REQUEST_MESSAGE }} | ||
ENDPOINT: ${{ secrets.BUILDER_ENDPOINT }} |