Merge pull request #2 from TaleLearnCode/presentations/Vegas #1
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: Squad Release | |
| # Project type was not detected — configure build, test, and release commands below | |
| on: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Build and test | |
| run: | | |
| # TODO: Project type was not detected — add your build/test commands here | |
| # Go: go test ./... | |
| # Python: pip install -r requirements.txt && pytest | |
| # .NET: dotnet test | |
| # Java (Maven): mvn test | |
| # Java (Gradle): ./gradlew test | |
| echo "No build commands configured — update squad-release.yml" | |
| - name: Create release | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| # TODO: Add your release commands here (e.g., git tag, gh release create) | |
| echo "No release commands configured — update squad-release.yml" |