Fix path concatenation in blog list. (#33) #21
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
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
deployments: write | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '19' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build the app | |
run: npm run build | |
- name: Setup Pages | |
uses: actions/configure-pages@v2 | |
- name: Upload GitHub Pages artifact | |
uses: actions/upload-pages-artifact@v3.0.0 | |
with: | |
path: 'out' | |
- name: Deploy GitHub Pages site | |
uses: actions/deploy-pages@v4.0.0 |