Skip to content

v6.32.1

v6.32.1 #88

Workflow file for this run

name: "Update Docs"
on:
release:
types: [published]
permissions: read-all
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout bugsnag-cocoa
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Checkout docs branch
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
ref: gh-pages
path: docs
- name: Configure docs branch
working-directory: docs
run: |
git config user.name "Bugsnag Bot"
git config user.email [email protected]
- name: Update docs
run: make docs
- name: Push changes
working-directory: docs
run: |
git status
git push