Skip to content

docs: update skills #330

docs: update skills

docs: update skills #330

Workflow file for this run

name: CI
on:
push:
branches-ignore: '*/*'
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
permissions:
contents: read
uses: ./.github/workflows/build.yml
secrets: inherit
deploy-pages:
needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Download website artifact
uses: actions/download-artifact@v8
with:
name: website
path: website-build/
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v5
with:
path: website-build/
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5