Skip to content

Bump just-the-docs from 0.8.2 to 0.9.0 #127

Bump just-the-docs from 0.8.2 to 0.9.0

Bump just-the-docs from 0.8.2 to 0.9.0 #127

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: Build with Jekyll
run: bundle exec jekyll build
- name: Build Success
uses: rjstone/discord-webhook-notify@v1
if: success()
with:
severity: info
username: GitHub Actions
details: Build Succeeded!
text: "Execution URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
- name: Build Failure
uses: rjstone/discord-webhook-notify@v1
if: failure()
with:
severity: error
details: Build Failed!
text: "Execution URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}
- name: Build Cancelled
uses: rjstone/discord-webhook-notify@v1
if: cancelled()
with:
severity: warn
details: Build Cancelled!
text: "Execution URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
webhookUrl: ${{ secrets.DISCORD_WEBHOOK }}