Disable Pendo setup without explicitly enabling #2416
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: Docs | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
paths: | |
- 'website/**' | |
push: | |
branches: | |
- 'main' | |
paths: | |
- 'website/**' | |
workflow_dispatch: | |
permissions: | |
contents: read # for actions/checkout to fetch code | |
jobs: | |
staging-release: | |
permissions: | |
statuses: write | |
if: ${{ github.event_name != 'push' && github.repository_owner == 'weaveworks' && !github.event.pull_request.head.repo.fork }} | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: website | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 | |
with: | |
node-version: "16.x" | |
- name: Test Build | |
env: | |
GA_KEY: "dummy" | |
ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }} | |
NODE_OPTIONS: "--max-old-space-size=4096" | |
GITHUB_HEAD_REF: ${{ github.head_ref }} | |
run: | | |
if [ -e yarn.lock ]; then | |
yarn install --frozen-lockfile | |
elif [ -e package-lock.json ]; then | |
npm ci | |
else | |
npm i | |
fi | |
yarn clear | |
export DOC_BASE_URL="/$GITHUB_HEAD_REF/" | |
export DOC_URL=https://staging.docs.gitops.weave.works | |
export STAGING_BUILD=true | |
npm run build | |
- id: auth | |
uses: google-github-actions/auth@35b0e87d162680511bf346c299f71c9c5c379033 # v1.1.1 | |
with: | |
credentials_json: ${{ secrets.PROD_DOCS_GITOPS_UPLOAD }} | |
- id: upload-file | |
uses: google-github-actions/upload-cloud-storage@e95a15f226403ed658d3e65f40205649f342ba2c # v1.0.3 | |
with: | |
path: website/build | |
destination: staging.docs.gitops.weave.works/${{ github.head_ref }} | |
parent: false | |
headers: |- | |
cache-control: no-cache | |
- id: add-docs-status | |
env: | |
GITHUB_HEAD_REF: ${{ github.head_ref }} | |
run: | | |
# Pull this out to a heredoc so we can easily interpolate variables | |
PAYLOAD=$(cat <<EOF | |
{ | |
"state": "success", | |
"context": "Doc site preview", | |
"target_url": "https://staging.docs.gitops.weave.works/$GITHUB_HEAD_REF" | |
} | |
EOF | |
) | |
curl --request POST \ | |
--url https://api.github.com/repos/${{ github.repository }}/statuses/${{ github.event.pull_request.head.sha }} \ | |
--header 'authorization: Bearer ${{ secrets.GITHUB_TOKEN }}' \ | |
--header 'content-type: application/json' \ | |
--data "$PAYLOAD" \ | |
--fail | |
prod-release: | |
if: github.event_name != 'pull_request' | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: website | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 | |
with: | |
node-version: "16.x" | |
- uses: weaveworks/webfactory-ssh-agent@6b2f2c5354ff41f1edbbf7a17ea9b6178c89be9f | |
with: | |
ssh-private-key: ${{ secrets.WEAVE_GITOPS_DOCS_WEAVEWORKS_DOCS_BOT_DEPLOY_KEY }} | |
- name: Release to GitHub Pages | |
env: | |
USE_SSH: true | |
GIT_USER: git | |
GA_KEY: ${{ secrets.GA_KEY }} | |
ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }} | |
NODE_OPTIONS: "--max-old-space-size=4096" | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "weaveworks-docs-bot" | |
if [ -e yarn.lock ]; then | |
yarn install --frozen-lockfile | |
elif [ -e package-lock.json ]; then | |
npm ci | |
else | |
npm i | |
fi | |
yarn clear | |
npm run build | |
- id: auth | |
uses: google-github-actions/auth@35b0e87d162680511bf346c299f71c9c5c379033 # v1.1.1 | |
with: | |
credentials_json: ${{ secrets.PROD_DOCS_GITOPS_UPLOAD }} | |
- id: upload-file | |
uses: google-github-actions/upload-cloud-storage@e95a15f226403ed658d3e65f40205649f342ba2c # v1.0.3 | |
with: | |
path: website/build | |
destination: production.docs.gitops.weave.works | |
parent: false |