fix: GitHub Pages 환경 보호 규칙으로 인한 배포 실패 해결 #8
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: Test Workflow | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Test basic commands | |
| run: | | |
| echo "Repository: ${{ github.repository }}" | |
| echo "Branch: ${{ github.ref }}" | |
| echo "Event: ${{ github.event_name }}" | |
| ls -la | |
| - name: Check workflow files | |
| run: | | |
| echo "Checking workflow files:" | |
| ls -la .github/workflows/ |