Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml → .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
name: PR Checks
name: PR and Commit checks

on:
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- "**" # runs on all branches for PRs
- "**"

jobs:
lint:
Expand Down
11 changes: 3 additions & 8 deletions .github/workflows/release.yaml → .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,7 @@ name: Docs Build & Deploy
on:
push:
branches:
- main
# paths:
# - "docs/**"
# - "examples/**"
# - ".github/workflows/docs.yml"
workflow_dispatch:
- master

jobs:
docs:
Expand All @@ -31,7 +26,7 @@ jobs:

- name: Build docs
run: |
make generate-api-docs build-docs
make build-docs

- name: Set up gcloud CLI
uses: google-github-actions/auth@v2
Expand All @@ -42,5 +37,5 @@ jobs:
uses: google-github-actions/upload-cloud-storage@v2
with:
path: docs/_build
destination: gs://${{ vars.DOCS_BUCKET }}/
destination: ${{ vars.DOCS_BUCKET }}
parent: false