Skip to content

Commit 8b7edb3

Browse files
committed
Excludes .pdb files from release (for now). Removes the extra README.md file.
1 parent e85c062 commit 8b7edb3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,12 @@ jobs:
7171
# Create package directory
7272
New-Item -ItemType Directory -Force -Path "package"
7373
74-
# Copy binaries
75-
Copy-Item "binaries/*" "package/" -Recurse
74+
# Copy binaries (just exclude .pdb files, for now)
75+
Copy-Item "binaries/*" "package/" -Recurse -Exclude "*.pdb"
7676
7777
# Copy documentation
7878
Copy-Item "Install/Win32/Readme.txt" "package/"
7979
Copy-Item "Install/IDPLicense.txt" "package/"
80-
Copy-Item "README.md" "package/"
8180
8281
# Create zip file
8382
Compress-Archive -Path "package/*" -DestinationPath "firebird-odbc-windows-${{ matrix.arch }}-${{ github.ref_name }}.zip"

0 commit comments

Comments
 (0)