Back to development: 4.4.3 #171
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: Push docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish-doc: | |
name: Publish documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: '${{ secrets.GCP_CREDENTIALS }}' | |
- name: 'Set up Cloud SDK' | |
uses: 'google-github-actions/setup-gcloud@v0' | |
- name: Push SDK docs to GCS | |
run: gsutil rsync -r ./docs gs://${{ secrets.DOCS_STORAGE }}/python-sdk |