All checks were successful
OSV-Scanner PR Scan / scan-pr (pull_request) Successful in 9m24s
109 lines
3.2 KiB
YAML
109 lines
3.2 KiB
YAML
name: Build and Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: 'Release version (e.g., v1.0.0)'
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: https://git.quad4.io/actions/checkout@a5b3063b1edaa6ba4911c8a1b1d5e1656fba3ea5 # v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Determine version
|
|
id: version
|
|
run: |
|
|
if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then
|
|
echo "version=${{ github.event.inputs.version }}" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
|
fi
|
|
|
|
- name: Setup Node.js
|
|
uses: https://git.quad4.io/actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
|
|
with:
|
|
node-version: 22
|
|
cache: pnpm
|
|
|
|
- name: Setup Task
|
|
uses: https://git.quad4.io/actions/setup-task@0ab1b2a65bc55236a3bc64cde78f80e20e8885c2 # v1
|
|
with:
|
|
version: '3.46.3'
|
|
|
|
- name: Setup environment
|
|
run: task setup
|
|
|
|
- name: Install dependencies
|
|
run: task install:ci
|
|
|
|
- name: Build frontend
|
|
run: task build:frontend
|
|
|
|
- name: Setup Go
|
|
uses: https://git.quad4.io/actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5
|
|
with:
|
|
go-version: '1.25.5'
|
|
|
|
- name: Build server binaries
|
|
run: |
|
|
task build:backend
|
|
task build-linux-amd64
|
|
task build-windows-amd64
|
|
|
|
- name: Build desktop Linux
|
|
run: task desktop-linux
|
|
|
|
- name: Build desktop Windows
|
|
run: task desktop-windows
|
|
|
|
- name: Prepare release assets
|
|
run: |
|
|
mkdir -p release-assets
|
|
cp bin/linking-tool-linux-amd64 release-assets/
|
|
cp bin/linking-tool-windows-amd64.exe release-assets/
|
|
if [ -f desktop/build/bin/linking-tool ]; then
|
|
cp desktop/build/bin/linking-tool release-assets/linking-tool-desktop-linux-amd64
|
|
fi
|
|
if [ -f desktop/build/bin/linking-tool.exe ]; then
|
|
cp desktop/build/bin/linking-tool.exe release-assets/linking-tool-desktop-windows-amd64.exe
|
|
fi
|
|
|
|
- name: Download SBOM
|
|
run: |
|
|
git fetch origin master:master || true
|
|
git checkout master -- sbom/ || git checkout ${{ github.sha }} -- sbom/ || true
|
|
if [ -d sbom ]; then
|
|
cp sbom/*.json release-assets/ || true
|
|
fi
|
|
|
|
- name: Create Release
|
|
uses: https://git.quad4.io/actions/gitea-release-action@4875285c0950474efb7ca2df55233c51333eeb74 # v1
|
|
with:
|
|
api_url: ${{ secrets.GITEA_API_URL }}
|
|
gitea_token: ${{ secrets.GITEA_TOKEN }}
|
|
title: ${{ steps.version.outputs.version }}
|
|
tag: ${{ steps.version.outputs.version }}
|
|
body: |
|
|
Release ${{ steps.version.outputs.version }}
|
|
|
|
## Assets
|
|
- Server binaries (Linux AMD64, Windows AMD64)
|
|
- Desktop applications (Linux AMD64, Windows AMD64)
|
|
- SBOM files
|
|
files: release-assets/*
|
|
draft: false
|
|
prerelease: false
|
|
|