| name: goreleaser | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| goreleaser: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23 | |
| - name: Run GoReleaser | |
| uses: goreleaser/goreleaser-action@v6 | |
| with: | |
| version: v2.11.0 | |
| args: release --clean | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| launcher-build-darwin: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23 | |
| - name: Build launcher for macOS ARM64 | |
| run: | | |
| make build-launcher-darwin | |
| - name: Upload DMG to Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: ./dist/LocalAI.dmg | |
| launcher-build-linux: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.23 | |
| - name: Build launcher for Linux | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install golang gcc libgl1-mesa-dev xorg-dev libxkbcommon-dev | |
| make build-launcher-linux | |
| - name: Upload Linux launcher artifacts | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: ./local-ai-launcher-linux.tar.xz | |