Skip to content

Change go version for workflows #4

Change go version for workflows

Change go version for workflows #4

Workflow file for this run

# Release build workflow for Go Lang Fyne app Ollamark
name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Install fyne-cross
run: |
go install github.com/fyne-io/fyne-cross@latest
- name: Install X11 development libraries
run: |
sudo apt-get update
sudo apt-get install -y libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libgl1-mesa-dev libxi-dev libxext-dev libglu1-mesa-dev xorg-dev
- name: Build
run: |
fyne-cross windows -arch=amd64 -icon icon.png
fyne-cross linux -arch=amd64 -icon icon.png
fyne-cross darwin -arch=amd64 -icon icon.png
env:
FYNE_CROSS_TARGETS: windows/amd64 linux/amd64 darwin/amd64
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
fyne-cross/bin/windows-amd64/Ollamark.exe
fyne-cross/bin/linux-amd64/Ollamark
fyne-cross/bin/darwin-amd64/Ollamark.app