From 7ee9743fad1453be4a8d53d209df323203299faf Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Tue, 24 Sep 2024 15:52:12 +0200 Subject: [PATCH 1/2] bugfix: copy entire configs directory to build output --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8600264..fbe0aee 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,7 +39,7 @@ jobs: run: | cp run.ps1 build/ cp install.ps1 build/ - cp configs.json build/ + cp -r configs/ build/ mkdir -p build/assets/ cp -r assets/*.ico build/assets/ From 1a7c6920778806080a0d39fc7bff2b491244d0e0 Mon Sep 17 00:00:00 2001 From: Baipyrus Date: Tue, 24 Sep 2024 15:54:48 +0200 Subject: [PATCH 2/2] ignore build output, see CICD --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 6f72f89..fc76edc 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,9 @@ *.so *.dylib +# Build output +build/* + # Test binary, built with `go test -c` *.test