mirror of https://github.com/pulumi/pulumi.git
30 lines
754 B
YAML
30 lines
754 B
YAML
env:
|
|
GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }}
|
|
VERSION: ${{ github.event.client_payload.ref }}
|
|
COMMIT_SHA: ${{ github.event.client_payload.commitSha }}
|
|
|
|
on:
|
|
repository_dispatch:
|
|
types:
|
|
- docs
|
|
|
|
jobs:
|
|
docs:
|
|
name: Build Package Docs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Checkout Scripts Repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
path: ci-scripts
|
|
repository: pulumi/scripts
|
|
- name: Trigger Docs Build
|
|
run: |
|
|
./ci-scripts/ci/build-package-docs.sh "pulumi"
|
|
env:
|
|
TRAVIS: true
|
|
PULUMI_BOT_GITHUB_API_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }}
|
|
TRAVIS_TAG: ${{ env.VERSION }}
|