getting the args file from a URL #5947
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: Deploy documentation | |
on: | |
push: | |
merge_group: | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
deployments: write | |
name: Publish to Cloudflare Pages | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: | |
run: | | |
# We had a bug where we were using both Yarn and NPM to maintain Docusaurus, which | |
# meant separate and conflicting lockfiles | |
# Only Yarn should be used | |
if [ -f docs/package-lock.json ]; then | |
exit 1 | |
fi | |
- name: Docs have changed | |
run: | | |
echo "DOCS_CHANGED=$(git --no-pager diff --exit-code origin/main...HEAD -- ':docs' > /dev/null; echo $?)" >> $GITHUB_OUTPUT | |
id: docs-diff | |
- name: Append changelog | |
run: cat CHANGELOG.md >> docs/docs/changelog.md | |
if: github.ref == 'refs/heads/main' || steps.docs-diff.outputs.DOCS_CHANGED != 0 | |
- name: Append Go README | |
run: cat api/golang/README.md >> docs/docs/sdk-examples/go-sdk-example.md | |
if: github.ref == 'refs/heads/main' || steps.docs-diff.outputs.DOCS_CHANGED != 0 | |
- name: Append TS README | |
run: cat api/typescript/README.md >> docs/docs/sdk-examples/ts-sdk-example.md | |
if: github.ref == 'refs/heads/main' || steps.docs-diff.outputs.DOCS_CHANGED != 0 | |
- name: Yarn Install | |
run: yarn --cwd ./docs --frozen-lockfile install | |
if: github.ref == 'refs/heads/main' || steps.docs-diff.outputs.DOCS_CHANGED != 0 | |
- name: Yarn Build | |
run: yarn --cwd ./docs build | |
if: github.ref == 'refs/heads/main' || steps.docs-diff.outputs.DOCS_CHANGED != 0 | |
- name: Publish to Cloudflare Pages | |
uses: cloudflare/pages-action@v1 | |
if: github.ref == 'refs/heads/main' || steps.docs-diff.outputs.DOCS_CHANGED != 0 | |
with: | |
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
projectName: ${{ secrets.CLOUDFLARE_PROJECT_NAME }} | |
directory: docs/build/ | |
# as we publish on tag we want to tell CF that the branch is still main so that it can deploy to production | |
branch: ${GITHUB_REF##*/} | |
reindex-website-main: | |
runs-on: ubuntu-latest | |
name: Update website search index via Algolia Crawler | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- uses: fjogeleit/http-request-action@v1 | |
with: | |
url: 'https://crawler.algolia.com/api/1/crawlers/${{ secrets.ALGOLIA_CRAWLER_ID }}/reindex' | |
method: 'POST' | |
username: ${{ secrets.ALGOLIA_CRAWLER_USER_ID }} | |
password: ${{ secrets.ALGOLIA_CRAWLER_API_KEY }} | |
customHeaders: '{"Content-Type": "application/json"}' | |
needs: publish | |
check-index: | |
runs-on: ubuntu-latest | |
name: Checks that the latest index is still working | |
if: github.ref == 'refs/heads/main' | |
steps: | |
- uses: fjogeleit/http-request-action@v1 | |
id: search | |
with: | |
url: "https://NTSX40VZB8-dsn.algolia.net/1/indexes/kurtosis/query" | |
method: 'POST' | |
customHeaders: '{"X-Algolia-API-Key": "4269c726c2fea4e6cddfeb9a21cd3d4e", "X-Algolia-Application-Id": "NTSX40VZB8"}' | |
data: '{ "params": "query=add_service&hitsPerPage=2&getRankingInfo=1" }' | |
- name: Show Response | |
run: | | |
#!/bin/bash | |
set -eou pipefail | |
if (( ${{ fromJson(steps.search.outputs.response).nbHits }} > 100 )); then | |
echo "Results are greater than 100" | |
else | |
echo "Results are not greater than 100" | |
exit 1 | |
fi | |
needs: reindex-website-main |