Skip to content

Fix ext_proc fuzzer test issues. #5150

Fix ext_proc fuzzer test issues.

Fix ext_proc fuzzer test issues. #5150

Workflow file for this run

name: mobile_docs
on:
push:
branches:
- main
pull_request:
concurrency:
group: ${{ github.head_ref || github.run_id }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
docs:
if: ${{ github.repository == 'envoyproxy/envoy' }}
runs-on: ubuntu-20.04
timeout-minutes: 20
container:
image: envoyproxy/envoy-build-ubuntu:41c5a05d708972d703661b702a63ef5060125c33
steps:
- uses: actions/checkout@v3
- name: Add safe directory
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Generate docs
run: mobile/docs/build.sh
- name: Set up deploy key
if: github.ref == 'refs/heads/main'
uses: shimataro/ssh-key-action@v2.5.1
with:
key: ${{ secrets.ENVOY_MOBILE_WEBSITE_DEPLOY_KEY }}
known_hosts: unnecessary
- name: Publish docs
if: github.ref == 'refs/heads/main'
run: mobile/docs/publish.sh
- uses: actions/upload-artifact@v3
with:
name: docs
path: generated/docs