Merge pull request #63 from aristotelesbr/development #44
This file contains 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 | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
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@v2 | |
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@v3 |