DOCS-2949: Fix mismapped methods #13403
Workflow file for this run
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: pr-deploy-and-comment | |
concurrency: | |
group: pullrequest-untrusted-deploy-${{ github.event.number }} | |
cancel-in-progress: true | |
on: | |
pull_request_target: | |
branches: [ main ] | |
types: [ labeled, synchronize ] | |
jobs: | |
pr-deploy-and-comment: | |
if: ${{ contains(github.event.*.labels.*.name, 'safe to build') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
submodules: true # fetch hugo themes | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '>=1.17.0' | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@v2 | |
with: | |
hugo-version: "0.128.2" | |
extended: true | |
- name: Get Date | |
id: get-date | |
run: | | |
echo "date=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_OUTPUT | |
shell: bash | |
- uses: actions/cache@v4 | |
with: | |
path: resources | |
key: ${{ steps.get-date.outputs.date }}-hugo-resources | |
- uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: ${{ steps.get-date.outputs.date }}-hugo-node_modules | |
- name: Temp config | |
run: | | |
echo url_latest_version = \"https://docs-test.viam.dev/${{ github.event.number }}\" > config_pr.toml | |
echo baseURL = \"https://docs-test.viam.dev/${{ github.event.number }}\" >> config_pr.toml | |
- name: Build | |
run: make build-pr-no-clean | |
- name: Authenticate on GCS | |
uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: '${{ secrets.GOOGLE_CREDENTIALS }}' | |
- name: 'Set up Cloud SDK' | |
uses: 'google-github-actions/setup-gcloud@v2' | |
- name: 'Use gcloud CLI' | |
run: 'gsutil -m rsync -R -d -c public gs://docs-test.viam.dev/${{ github.event.number }}/' | |
- name: Comment on PR with link to rendered site | |
uses: marocchino/[email protected] | |
with: | |
recreate: true | |
message: 'You can view a rendered version of the docs from this PR at https://docs-test.viam.dev/${{ github.event.number }}' | |
GITHUB_TOKEN: ${{ secrets.PR_TOKEN }} |