Sha256: 811a7dfd0f73be1027e0282775341b288d50a696e66207edede195a7ffa41257

Contents?: true

Size: 891 Bytes

Versions: 6

Compression:

Stored size: 891 Bytes

Contents

name: Deploy docs to Pages

on:
  push:
    branches: ['master']
  workflow_dispatch:

permissions:
  contents: read
  pages: write
  id-token: write

concurrency:
  group: "pages"
  cancel-in-progress: true

jobs:
  deploy:
    environment:
      name: github-pages
      url: ${{ steps.deployment.outputs.page_url }}
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4
      - name: Set up Ruby
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: '3.3'
          bundler-cache: true
      - name: Build docs
        run: bundle exec rake yard
      - name: Set up Pages
        uses: actions/configure-pages@v5
      - name: Upload artifact
        uses: actions/upload-pages-artifact@v3
        with:
          path: build_docs
      - name: Deploy to GitHub Pages
        id: deployment
        uses: actions/deploy-pages@v4

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
facterdb-3.4.0 .github/workflows/pages.yml
facterdb-3.3.0 .github/workflows/pages.yml
facterdb-3.2.0 .github/workflows/pages.yml
facterdb-3.1.0 .github/workflows/pages.yml
facterdb-3.0.0 .github/workflows/pages.yml
facterdb-2.1.0 .github/workflows/pages.yml