Skip to content

Commit

Permalink
repro?
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed Jun 6, 2024
0 parents commit 6d0cd7f
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

dist/
18 changes: 18 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com

# The lines below are called `modelines`. See `:help modeline`
# Feel free to remove those if you don't want/need to use them.
# yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json
# vim: set ts=2 sw=2 tw=0 fo=cnqoj

version: 2

builds:
- goos: [linux]
goarch: [amd64]

archives:
- files:
- src: "dir/**"
dst: "otherdir/"
Empty file added dir/another/test
Empty file.
Empty file added dir/another/testetest
Empty file.
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module foo

go 1.22.3
3 changes: 3 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package main

func main() {}

0 comments on commit 6d0cd7f

Please sign in to comment.