Files
runesmith/.gitea/workflows/cross-compile.yaml
DaanSelen 484be79290
Some checks failed
Cross-Compile Binaries / cross-compile (push) Failing after 1m23s
chore: add logo and edit workflow
2025-11-26 13:16:01 +01:00

29 lines
614 B
YAML

name: Cross-Compile Binaries
on:
workflow_dispatch:
push:
branches:
- 'main'
tags:
- '*'
jobs:
cross-compile:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout and pull the code
uses: actions/checkout@v5
- name: Setup the Go programming language
uses: actions/setup-go@v6
with:
go-version: 'stable'
- name: Install the Fyne cross-compile package
run: go install github.com/fyne-io/fyne-cross@latest
- name: Cross compile linux
run: /root/go/bin/fyne-cross linux