fix: settings menu layout #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build and Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@master | |
- name: Setup Go Environment | |
uses: actions/setup-go@v2 | |
with: | |
go-version: "^1.18.0" | |
- name: Build Binaries | |
run: | | |
mkdir -p fyne-cross/dist/compressed | |
go install github.com/fyne-io/fyne-cross@latest | |
fyne-cross linux -arch=amd64,arm64 | |
fyne-cross windows -arch=amd64 -app-id=com.github.walldo | |
cd fyne-cross/dist | |
for file in */*.tar.xz; do mv -- "$file" "compressed/walldo-${file%/*}.tar.xz"; done | |
for file in */*.zip; do mv -- "$file" "compressed/walldo-${file%/*}.zip"; done | |
- name: Upload Binaries | |
run: | | |
go install github.com/tcnksm/ghr@latest | |
ghr -t ${{ secrets.GITHUB_TOKEN }} --delete Latest fyne-cross/dist/compressed/ |