Some checks failed
Cross-Compile Binaries / cross-compile (push) Failing after 1m23s
29 lines
630 B
YAML
29 lines
630 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 --icon Icon.png |