Sha256: 4665ea944e4cc5a548e53827f907f6cedeeb3ada8aedc575e1432e502638548b

Contents?: true

Size: 629 Bytes

Versions: 5

Compression:

Stored size: 629 Bytes

Contents

name: Documentation

on:
  push:
    branches:
      - main

jobs:
  deploy:
    runs-on: ubuntu-latest
    
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      env:
        BUNDLE_WITH: maintenance
      with:
        ruby-version: 3.0
        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
    
    - name: Deploy documentation
      uses: JamesIves/github-pages-deploy-action@4.0.0
      with:
        branch: docs
        folder: docs

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
bake-modernize-0.8.0 template/actions/.github/workflows/documentation.yml
bake-modernize-0.7.0 template/actions/.github/workflows/documentation.yml
covered-0.14.0 .github/workflows/documentation.yml
bake-modernize-0.6.0 template/actions/.github/workflows/documentation.yml
bake-modernize-0.5.1 template/actions/.github/workflows/documentation.yml