Files
monaco/.github/workflows/release.yml
2025-03-26 21:01:59 +05:30

47 lines
1.1 KiB
YAML

name: Release Monaco Project
on:
push:
tags:
- 'v*' # Triggers on version tags like v1.0.0, v1.1.0-beta, etc.
jobs:
build-and-release:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.22.3] # Adjust to your Go version
os: [linux, darwin, windows]
arch: [amd64, arm64]
exclude:
- os: darwin
arch: arm64
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build binary
env:
GOOS: ${{ matrix.os }}
GOARCH: ${{ matrix.arch }}
run: |
cd backend
go mod tidy
GOOS=$GOOS GOARCH=$GOARCH go build -o monaco-${{ matrix.os }}-${{ matrix.arch }} .
- name: Create Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
backend/monaco-${{ matrix.os }}-${{ matrix.arch }}
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}