Fix typos in readme.md motivation section #60
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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: | |
| BUNDLE_WITH: maintenance | |
| jobs: | |
| generate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ruby | |
| bundler-cache: true | |
| - name: Installing packages | |
| run: sudo apt-get install wget | |
| - name: Generate documentation | |
| timeout-minutes: 5 | |
| run: bundle exec bake build utopia:project:static --force no | |
| - name: Upload documentation artifact | |
| uses: actions/upload-pages-artifact@v4 | |
| 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 |