mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-05 16:37:09 +00:00
68 lines
1.4 KiB
YAML
68 lines
1.4 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v*.*.*"
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
name: PLG-MuDiCS ${{ github.ref_name }}
|
|
body_path: CHANGELOG.md
|
|
|
|
build:
|
|
needs: release
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
block:
|
|
- control
|
|
- display
|
|
defaults:
|
|
run:
|
|
working-directory: ${{ matrix.block }}
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: "^1.24"
|
|
cache-dependency-path: go.sum
|
|
|
|
- name: Setup Deno
|
|
uses: denoland/setup-deno@v2
|
|
if: matrix.block == 'control'
|
|
with:
|
|
deno-version: v2.x
|
|
|
|
- name: Install Dependencies
|
|
run: go mod download
|
|
|
|
- name: Generate
|
|
run: go generate ./...
|
|
|
|
- name: Build
|
|
run: go build -o plg-mudics-${{ matrix.block }} .
|
|
|
|
- name: Upload Release Assets
|
|
uses: svenstaro/upload-release-action@v2
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: plg-mudics-${{ matrix.block }}
|
|
tag: ${{ github.ref_name }}
|