-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (29 loc) · 1001 Bytes
/
squad-release.yml
File metadata and controls
34 lines (29 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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"