From ba32d8ec9c57b0335c9979ae597fb363e33d65b7 Mon Sep 17 00:00:00 2001 From: h0tak88r Date: Tue, 4 Feb 2025 06:32:01 +0200 Subject: [PATCH] feat: simplified build process --- ._.goreleaser.yml | Bin 4096 -> 0 bytes .github/workflows/._build.yml | Bin 4096 -> 0 bytes .goreleaser.yml | 93 ---------------------------------- 3 files changed, 93 deletions(-) delete mode 100644 ._.goreleaser.yml delete mode 100644 .github/workflows/._build.yml delete mode 100644 .goreleaser.yml diff --git a/._.goreleaser.yml b/._.goreleaser.yml deleted file mode 100644 index 2e0a243de02113c6c041e17108c0d0241617b17c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4096 zcmZQz6=P>$Vqox1Ojhs@R)|o50+1L3ClDJkFz{^v(m+1nBL)UWIUt(=a103vf+zv$ zV3+~K+-O=D5#plB`MG+D1qC^&dId%KWvO|IdC92^j7$uF*O;twS+*$}P3tIkGz3ON zU^E0qLtr!nMnhmU1V%$(Gz3ONU^E0qLtr!nu!jJsvkAgrAQzI6S*%c$TAW{6l$@%N ymS2>ukeOGKnpcvUpO=`EQ>l=XnpUEal#`g34eSd;bq#3>)&Fp>$S}zL{|^AvfGEiT diff --git a/.github/workflows/._build.yml b/.github/workflows/._build.yml deleted file mode 100644 index 2e0a243de02113c6c041e17108c0d0241617b17c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4096 zcmZQz6=P>$Vqox1Ojhs@R)|o50+1L3ClDJkFz{^v(m+1nBL)UWIUt(=a103vf+zv$ zV3+~K+-O=D5#plB`MG+D1qC^&dId%KWvO|IdC92^j7$uF*O;twS+*$}P3tIkGz3ON zU^E0qLtr!nMnhmU1V%$(Gz3ONU^E0qLtr!nu!jJsvkAgrAQzI6S*%c$TAW{6l$@%N ymS2>ukeOGKnpcvUpO=`EQ>l=XnpUEal#`g34eSd;bq#3>)&Fp>$S}zL{|^AvfGEiT diff --git a/.goreleaser.yml b/.goreleaser.yml deleted file mode 100644 index 4ce9127..0000000 --- a/.goreleaser.yml +++ /dev/null @@ -1,93 +0,0 @@ -project_name: apkx - -before: - hooks: - - go mod tidy - - go generate ./... - -builds: - - id: apkx - main: ./cmd/apkx/main.go - binary: apkx - env: - - CGO_ENABLED=0 - goos: - - linux - - windows - - darwin - goarch: - - amd64 - - arm64 - ignore: - - goos: windows - goarch: arm64 - ldflags: - - -s -w - - -X main.version={{.Version}} - - -X main.commit={{.Commit}} - - -X main.date={{.Date}} - mod_timestamp: '{{ .CommitTimestamp }}' - -archives: - - id: default - builds: [apkx] - name_template: >- - {{ .ProjectName }}_ - {{- .Version }}_ - {{- .Os }}_ - {{- .Arch }} - format_overrides: - - goos: windows - format: zip - files: - - src: 'LICENSE' - dst: 'LICENSE' - - src: 'README.md' - dst: 'README.md' - - src: 'config/*' - dst: 'config' - strip_parent: true - -checksum: - name_template: 'checksums.txt' - algorithm: sha256 - -signs: - - artifacts: checksum - -snapshot: - name_template: "{{ incpatch .Version }}-next" - -changelog: - sort: asc - use: github - filters: - exclude: - - '^docs:' - - '^test:' - - '^ci:' - - Merge pull request - - Merge branch - groups: - - title: 'New Features' - regexp: "^.*feat[(\\w)]*:+.*$" - order: 0 - - title: 'Bug fixes' - regexp: "^.*fix[(\\w)]*:+.*$" - order: 1 - - title: Others - order: 999 - -release: - draft: false - prerelease: auto - mode: replace - header: | - ## apkX {{ .Version }} ({{ .Date }}) - - Welcome to this new release! - footer: | - ## Thanks! - - * Download the binary for your platform - * Star the repo if you like it \ No newline at end of file