fix: GitHub API 404 오류 해결 - getLatestRelease 대신 현재 태그 기반 릴리즈 조회 #10
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/ |