From fb1e3bcb858076e3add98ae90b4fc83e2e1a48d8 Mon Sep 17 00:00:00 2001 From: Patryk Hegenberg Date: Tue, 31 Oct 2023 11:25:28 +0100 Subject: [PATCH] added build files for goreleaser and a first README file --- .gitignore | 2 ++ .goreleaser.yaml | 46 ++++++++++++++++++++++++++++++++++++++++++++++ README.md | 10 ++++++++++ 3 files changed, 58 insertions(+) create mode 100644 .goreleaser.yaml create mode 100644 README.md diff --git a/.gitignore b/.gitignore index 54345cc..74b5c6d 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,5 @@ dist-ssr out/ Tagesabrechnung + +dist/ diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 0000000..bd9f97a --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,46 @@ +# This is an example .goreleaser.yml file with some sensible defaults. +# Make sure to check the documentation at https://goreleaser.com +before: + hooks: + # You may remove this if you don't use go modules. + - go mod tidy + # you may remove this if you don't need go generate + - go generate ./... +builds: + - env: + - CGO_ENABLED=1 + goos: + - linux + - windows + goarch: + - amd64 + +archives: + - format: tar.gz + # this name template makes the OS and Arch compatible with the results of uname. + name_template: >- + {{ .ProjectName }}_ + {{- title .Os }}_ + {{- if eq .Arch "amd64" }}x86_64 + {{- else if eq .Arch "386" }}i386 + {{- else }}{{ .Arch }}{{ end }} + {{- if .Arm }}v{{ .Arm }}{{ end }} + # use zip for windows archives + format_overrides: + - goos: windows + format: zip +checksum: + name_template: 'checksums.txt' +snapshot: + name_template: "{{ incpatch .Version }}-next" +changelog: + sort: asc + filters: + exclude: + - '^docs:' + - '^test:' + +# The lines beneath this are called `modelines`. See `:help modeline` +# Feel free to remove those if you don't want/use them. +# yaml-language-server: $schema=https://goreleaser.com/static/schema.json +# vim: set ts=2 sw=2 tw=0 fo=cnqoj diff --git a/README.md b/README.md new file mode 100644 index 0000000..139d6ab --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +# README +## Base information +This is a simple Program to calculate the daily balance earn by a shop. + +## Building the program +To build and package the program use the following command: +### Linux +fyne package -os linux -icon Icon.png +### Windows +fyne-cross windows -arch=amd64