Skip to content

Oops. Fix image for entry. #38

Oops. Fix image for entry.

Oops. Fix image for entry. #38

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: Deploy website to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main-polis"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
# Default to bash
defaults:
run:
shell: bash
jobs:
build:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]') && github.repository == 'patcon/awesome-polis'"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
id: configure-pages
uses: actions/configure-pages@v5
- name: Set specific node version
uses: actions/setup-node@v4
with:
# Version with optional chaining "?." operator
node-version: 14
- name: Configure baseUrl
env:
BASE_URL: ${{ steps.configure-pages.outputs.base_url }}
run: |
echo "" >> src/config.yaml
echo "baseurl: '${BASE_URL}'" >> src/config.yaml
- name: Build readme & website
run: |
npm --version
node --version
npm ci
npm run lint
npm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./public
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4