Skip to content

chore: update Fyne to 2.6.3 and Go to 1.25.1 (#31) #24

chore: update Fyne to 2.6.3 and Go to 1.25.1 (#31)

chore: update Fyne to 2.6.3 and Go to 1.25.1 (#31) #24

Workflow file for this run

name: release
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Dev dependencies
run: sudo apt-get update && sudo apt-get install gcc libgl1-mesa-dev libegl1-mesa-dev libgles2-mesa-dev libx11-dev xorg-dev
- uses: WillAbides/setup-go-faster@v1.14.0
with:
go-version: '1.25.1'
- name: Install UPX
uses: crazy-max/ghaction-upx@v3
with:
install-only: true
- name: UPX version
run: upx --version
- name: Install Cloudsmith CLI
run: pipx install cloudsmith-cli
- name: Release
uses: goreleaser/goreleaser-action@v6
with:
version: '~> v2'
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to Cloudsmith
env:
CLOUDSMITH_API_KEY: ${{ secrets.CLOUDSMITH_API_KEY }}
run: |
for filename in dist/*.deb; do
cloudsmith push deb tomsquest/fynodoro/any-distro/any-version $filename
done
for filename in dist/*.rpm; do
cloudsmith push rpm tomsquest/fynodoro/any-distro/any-version $filename
done