Skip to content

release v0.27.0

release v0.27.0 #32

Workflow file for this run

# Deploy LowCSS Docs to GitHub pages
name: Deploy Docs
on:
# Runs when a new tag is created (release)
push:
tags: ["*"]
# 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 one concurrent deployment
concurrency:
group: "deploy"
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- uses: actions/configure-pages@v4
- run: yarn install
- run: yarn run build
- run: yarn run build:site
- uses: actions/upload-pages-artifact@v3
with:
path: www
- uses: actions/deploy-pages@v4
id: deployment