Sha256: a9055bcde142ef6f15b61c4d9fd318df12cb82cc9c882f9388dabf7ac2810f37

Contents?: true

Size: 1.11 KB

Versions: 12

Compression:

Stored size: 1.11 KB

Contents

name: Documentation

on:
  push:
    branches:
      - main

# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages:
permissions:
  contents: read
  pages: write
  id-token: write

# Allow one concurrent deployment:
concurrency:
  group: "pages"
  cancel-in-progress: true

env:
  CONSOLE_OUTPUT: XTerm
  BUNDLE_WITH: maintenance

jobs:
  generate:
    runs-on: ubuntu-latest
    
    steps:
    - uses: actions/checkout@v4

    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: "3.3"
        bundler-cache: true
    
    - name: Installing packages
      run: sudo apt-get install wget
    
    - name: Generate documentation
      timeout-minutes: 5
      run: bundle exec bake utopia:project:static --force no
    
    - name: Upload documentation artifact
      uses: actions/upload-pages-artifact@v3
      with:
        path: docs
  
  deploy:
    runs-on: ubuntu-latest
    
    environment:
      name: github-pages
      url: ${{steps.deployment.outputs.page_url}}
    
    needs: generate
    steps:
      - name: Deploy to GitHub Pages
        id: deployment
        uses: actions/deploy-pages@v4

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
bake-modernize-0.31.0 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.30.0 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.29.0 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.28.0 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.27.3 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.27.2 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.27.1 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.27.0 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.26.0 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.25.0 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.24.0 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.23.0 template/actions/.github/workflows/documentation.yaml