feat(example-site): h2 separator line #284
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: Build and deploy example site to Github Pages | |
on: | |
push: | |
branches: ['master'] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: 'pages' | |
cancel-in-progress: true | |
jobs: | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup GitHub Pages | |
uses: actions/configure-pages@v3 | |
- name: Update domain | |
run: 'echo "andis-sprinkis.github.io" > ./site/_inline_domain' | |
- name: Update the host URL path prefix | |
run: 'echo "/tparts" > ./site/_inline_path_host_prefix' | |
- name: Build artifact | |
run: './build' | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: './dist/' | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |