Skip to content

Commit

Permalink
Update Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinTimperio committed Dec 16, 2024
1 parent 8f0273e commit 772ac0d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- "master"
tags:
- "v*" # For v1.0, v0.1.0, etc
- "v*"
pull_request:
branches:
- "master"
Expand All @@ -26,14 +26,19 @@ jobs:
~/go/bin/fyne-cross linux -arch=amd64,arm64 -app-id="OnionSoup"
~/go/bin/fyne-cross windows -arch=amd64,arm64 -app-id="Onion.Soup"
mv fyne-cross/dist/linux-amd64/onionsoup.tar.xz fyne-cross/onionsoup_linux_amd64.tar.xz
mv fyne-cross/dist/linux-arm64/onionsoup.tar.xz fyne-cross/onionsoup_linux_arm64.tar.xz
mv fyne-cross/dist/windows-amd64/onionsoup.tar.xz fyne-cross/onionsoup_windows_amd64.tar.xz
mv fyne-cross/dist/windows-arm64/onionsoup.tar.xz fyne-cross/onionsoup_windows_arm64.tar.xz
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
LICENSE
fyne-cross/dist/linux-amd64/onionsoup.tar.xz
fyne-cross/dist/linux-arm64/onionsoup.tar.xz
fyne-cross/dist/windows-amd64/onionsoup.exe.zip
fyne-cross/dist/windows-arm64/onionsoup.exe.zip
fyne-cross/onionsoup_linux_amd64.tar.xz
fyne-cross/onionsoup_linux_arm64.tar.xz
fyne-cross/onionsoup_windows_amd64.exe.zip
fyne-cross/onionsoup_windows_arm64.exe.zip
token: ${{ secrets.GH_TOKEN }}
2 changes: 1 addition & 1 deletion menus/home.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"fyne.io/fyne/v2/widget"
)

const Version = "1.0.1"
const Version = "1.0.2"

func HomeView(w fyne.Window) fyne.CanvasObject {
logo := canvas.NewImageFromResource(data.Logo)
Expand Down

0 comments on commit 772ac0d

Please sign in to comment.