Sha256: 70fa3f5ea74ca9573c6efbfe07d1de87abb1078bb0c9cfe9a4a76e3cdbacf0a1

Contents?: true

Size: 1.2 KB

Versions: 18

Compression:

Stored size: 1.2 KB

Contents

name: Documentation

on:
  push:
    branches:
      - main

    # Allows you to run this workflow manually from the Actions tab:
    workflow_dispatch:

# 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@v3

    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: "3.2"
        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@v1
      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@v1

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
bake-modernize-0.17.8 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.17.7 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.17.6 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.17.5 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.17.4 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.17.3 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.17.2 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.17.1 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.17.0 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.16.2 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.16.1 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.16.0 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.15.1 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.15.0 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.14.4 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.14.3 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.14.2 template/actions/.github/workflows/documentation.yaml
bake-modernize-0.14.1 template/actions/.github/workflows/documentation.yaml