Skip to content

Commit

Permalink
refactor(goreleaser): use conventional file names for deb, rpm (#960)
Browse files Browse the repository at this point in the history
  • Loading branch information
vedantmgoyal9 authored Feb 14, 2025
1 parent 1c33ccf commit c8a4ac1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ nfpms:
- formats: [deb, rpm]
id: deb-arm64-wayland
builds: [linux-arm64-wayland]
file_name_template: rio_{{ .Version }}-1_arm64_wayland
file_name_template: {{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_wayland
package_name: rioterm
dependencies: [libc6 (>= 2.35), libstdc++6 (>= 11)]
contents:
Expand All @@ -158,7 +158,7 @@ nfpms:
- formats: [deb, rpm]
id: deb-arm64-x11
builds: [linux-arm64-x11]
file_name_template: rio_{{ .Version }}-1_arm64_x11
file_name_template: {{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_x11
package_name: rioterm
dependencies: [libc6 (>= 2.35), libstdc++6 (>= 11)]
contents:
Expand All @@ -173,7 +173,7 @@ nfpms:
- formats: [deb, rpm]
id: deb-x64-wayland
builds: [linux-x64-wayland]
file_name_template: rio_{{ .Version }}-1_amd64_wayland
file_name_template: {{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_wayland
package_name: rioterm
dependencies: [libc6 (>= 2.35), libstdc++6 (>= 11)]
contents:
Expand All @@ -188,7 +188,7 @@ nfpms:
- formats: [deb, rpm]
id: deb-x64-x11
builds: [linux-x64-x11]
file_name_template: rio_{{ .Version }}-1_amd64_x11
file_name_template: {{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_x11
package_name: rioterm
dependencies: [libc6 (>= 2.35), libstdc++6 (>= 11)]
contents:
Expand Down

0 comments on commit c8a4ac1

Please sign in to comment.