Skip to content

[Feat] TWDD 공개 방법론과 에이전트 스킬 배포 #1

[Feat] TWDD 공개 방법론과 에이전트 스킬 배포

[Feat] TWDD 공개 방법론과 에이전트 스킬 배포 #1

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: github-pages
cancel-in-progress: false
jobs:
deploy:
name: Validate and deploy the introduction site
runs-on: ubuntu-latest
timeout-minutes: 10
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Check out the repository
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
- name: Validate public surfaces
run: node scripts/validate-public.mjs
- name: Configure GitHub Pages
uses: actions/configure-pages@v5
- name: Upload the static site
uses: actions/upload-pages-artifact@v4
with:
path: site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4