Skip to content

Merge pull request #2 from TaleLearnCode/presentations/Vegas #1

Merge pull request #2 from TaleLearnCode/presentations/Vegas

Merge pull request #2 from TaleLearnCode/presentations/Vegas #1

Workflow file for this run

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"