원클릭으로
deployment-management
Guidelines for triggering and managing deployments using GitHub Actions and local scripts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guidelines for triggering and managing deployments using GitHub Actions and local scripts.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
General code style, development workflow, and build/quality tools for nhl-recap.
Guidelines for git usage and commit messages in nhl-recap.
Guidelines for API integration, environment variables, mocking, and utilities in nhl-recap.
Guidelines for documentation standards and project-specific README files in nhl-recap.
Guidelines for Service Worker and PWA functionality in nhl-recap.
Guidelines for creating and modifying UI components and styles in nhl-recap.
SOC 직업 분류 기준
| name | deployment-management |
| description | Guidelines for triggering and managing deployments using GitHub Actions and local scripts. |
This skill provides instructions for deploying the nhl-recap application to GitHub Pages.
Deployments are managed via the Deployment workflow (deployment.yml). This is the standard way to deploy and ensures all checks pass in a clean environment.
Triggering the workflow:
Use the GitHub CLI (gh) to trigger the workflow from the master branch:
gh workflow run Deployment --ref master
Authentication: Ensure the CLI is authenticated. Check status with:
gh auth status
If not authenticated or the token is invalid, ask the user to run gh auth login.
Monitoring progress: View the status of the triggered run:
gh run list --workflow Deployment --limit 1
Watch a running workflow:
gh run watch
A local script is available for emergency or manual deployments that bypass the remote CI environment (though it still runs a build).
npm run deploy
This script:
gh-pages branch.origin gh-pages.Always run all project checks before triggering a deployment:
npm run check