chore(ci): fixup release pipeline #12676
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: goreleaser | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
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@v5 | |
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-Launcher.dmg | |
launcher-build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
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 |