Skip to content

v6.30.2

v6.30.2 #85

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@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
- name: Checkout docs branch
uses: actions/checkout@ee0669bd1cc54295c223e0bb666b733df41de1c5 # v2.7.0
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