release: develop 운영 배포 준비 #16
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release Record Check | |
| on: | |
| pull_request: | |
| paths: | |
| - 'releases/**/*.yaml' | |
| - 'scripts/release/**' | |
| - 'ops/**' | |
| - '.github/workflows/deploy-prod.yml' | |
| - '.github/workflows/release-record-check.yml' | |
| workflow_dispatch: | |
| jobs: | |
| validate-release-records: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| - name: Validate release records | |
| run: node scripts/release/validate-release-record.mjs releases |