بنقرة واحدة
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 ويثبّتها لك.
استنادا إلى تصنيف 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
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.