Implemented aiPersona search focus #4
Workflow file for this run
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: Release | |
| on: | |
| push: | |
| tags: | |
| - 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10 | |
| jobs: | |
| build-and-release: | |
| runs-on: windows-latest | |
| permissions: | |
| contents: write # Needed for creating a release | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 # Need full history for versioning/build number | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.23.x' | |
| - name: Build all platforms | |
| run: .\scripts\build.ps1 all | |
| shell: pwsh | |
| - name: List build artifacts | |
| run: Get-ChildItem -Path build -Recurse | |
| shell: pwsh | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| build/scmd-windows-amd64.exe | |
| build/scmd-linux-amd64 | |
| build/scmd-linux-aarch64 | |
| build/scmd-darwin-amd64 | |
| build/scmd-darwin-arm64 | |
| draft: false | |
| prerelease: false | |
| generate_release_notes: true | |
| tag_name: ${{ github.ref_name }} | |
| name: Release ${{ github.ref_name }} |