diff --git a/.github/workflows/pr-deploy-and-comment.yml b/.github/workflows/pr-deploy-and-comment.yml deleted file mode 100644 index 0ae83bce14..0000000000 --- a/.github/workflows/pr-deploy-and-comment.yml +++ /dev/null @@ -1,71 +0,0 @@ -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/sticky-pull-request-comment@v2.2.0 - 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 }}