Skip to content

Bump com.google.errorprone:error_prone_core from 2.30.0 to 2.33.0 #864

Bump com.google.errorprone:error_prone_core from 2.30.0 to 2.33.0

Bump com.google.errorprone:error_prone_core from 2.30.0 to 2.33.0 #864

Workflow file for this run

name: Creating Documentation Site
on:
push:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
bundler-cache: true
- name: Build docs
run: ./tutorial/build.sh
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'tutorial/output'
deploy:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
runs-on: ubuntu-latest
if: ${{ success() && github.event_name != 'pull_request' && ( github.ref == 'refs/heads/main' || github.ref == 'refs/heads/docs' ) }}
needs:
- build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4