Skip to content

Bump the github-actions group across 1 directory with 3 updates (#209) #391

Bump the github-actions group across 1 directory with 3 updates (#209)

Bump the github-actions group across 1 directory with 3 updates (#209) #391

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
asciidoctor:
name: "Asciidoctor"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up JDK 11
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: 'zulu'
java-version: 11
cache: 'gradle'
- name: Run Asciidoctor
run: ./gradlew asciidoctor
- name: Publish to GitHub Pages
if: github.repository == 'assertj/doc' && github.event_name == 'push'
run: ./gradlew --stacktrace --info gitPublishPush
env:
GIT_COMMITTER_NAME: GitHub Actions
GIT_COMMITTER_EMAIL: 41898282+github-actions[bot]@users.noreply.github.com
GRGIT_USER: ${{ secrets.ASCIIDOCTOR_TOKEN }}