mirror of
https://wiilab.wiimart.org/wiimart/WiiSOAP
synced 2025-09-07 05:51:21 +02:00
41 lines
926 B
YAML
41 lines
926 B
YAML
# This workflow will build a golang project
|
|
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
|
|
|
|
name: Go
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
workflow_dispatch:
|
|
inputs:
|
|
optional_input:
|
|
description: 'Only run when needed'
|
|
required: false
|
|
default: ''
|
|
|
|
jobs:
|
|
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v4
|
|
with:
|
|
go-version: '1.23'
|
|
|
|
- name: Build
|
|
run: go build -v ./...
|
|
|
|
- name: Create release ZIP
|
|
run: mkdir -p release && cp WiiSOAP release/ && cp config.example.xml release/ && zip -r wiisoap.zip release/
|
|
|
|
- name: Upload release ZIP
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: wiisoap-linux
|
|
path: wiisoap.zip
|