Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(goreleaser): special chars should be wrapped in " #964

Merged
merged 1 commit into from
Feb 14, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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: {{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_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: {{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_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: {{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_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: {{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_x11
file_name_template: "{{- trimsuffix .ConventionalFileName .ConventionalExtension -}}_x11"
package_name: rioterm
dependencies: [libc6 (>= 2.35), libstdc++6 (>= 11)]
contents:
Expand Down