Record TCP connection local socket address in metadata (#3286) #1
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
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
paths: | |
- design/** | |
name: Update GitHub Pages | |
env: | |
rust_version: 1.70.0 | |
# Allow only one doc pages build to run at a time for the entire smithy-rs repo | |
concurrency: | |
group: github-pages-yml | |
cancel-in-progress: true | |
jobs: | |
build-and-deploy-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: ${{ env.rust_version }} | |
- name: Generate docs | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config --local user.name "AWS SDK Rust Bot" | |
git config --local user.email "[email protected]" | |
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${{ github.repository }} | |
git fetch origin github-pages | |
pushd design &>/dev/null | |
cargo install mdbook | |
cargo install --locked mdbook-mermaid | |
mdbook build --dest-dir ../../output | |
popd &>/dev/null | |
git checkout origin/github-pages -b github-pages | |
rm -rf design | |
mv ../output design | |
git add design | |
git commit -m "Update design docs" | |
git push origin github-pages |