Changes to remove js #46
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: Preview website (artifact) | |
| on: | |
| push: | |
| branches: | |
| - hjemmeside_startside | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| preview: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.11' | |
| - name: Install Quarto | |
| uses: quarto-dev/quarto-actions/setup@v2 | |
| - name: Render DA/base site | |
| run: quarto render | |
| - name: Render EN profile pages | |
| run: quarto render --profile en --no-clean | |
| - name: Upload preview artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: quarto-preview-hjemmeside_startside | |
| path: _site |