From 6d0cd7f9bebea8e4dfbbb52c8717effb2400162f Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Wed, 5 Jun 2024 23:10:39 -0300 Subject: [PATCH] repro? --- .gitignore | 2 ++ .goreleaser.yaml | 18 ++++++++++++++++++ dir/another/test | 0 dir/another/testetest | 0 go.mod | 3 +++ main.go | 3 +++ 6 files changed, 26 insertions(+) create mode 100644 .gitignore create mode 100644 .goreleaser.yaml create mode 100644 dir/another/test create mode 100644 dir/another/testetest create mode 100644 go.mod create mode 100644 main.go diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cde0123 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ + +dist/ diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 0000000..30d3dab --- /dev/null +++ b/.goreleaser.yaml @@ -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/" diff --git a/dir/another/test b/dir/another/test new file mode 100644 index 0000000..e69de29 diff --git a/dir/another/testetest b/dir/another/testetest new file mode 100644 index 0000000..e69de29 diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..fce9eb9 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module foo + +go 1.22.3 diff --git a/main.go b/main.go new file mode 100644 index 0000000..38dd16d --- /dev/null +++ b/main.go @@ -0,0 +1,3 @@ +package main + +func main() {}