Skip to content

Commit aa6b6cb

Browse files
authored
Exclude librocksdb.dll from getting added in release tar for NVP (#3925)
Current release tar for Windows includes librocksdb.dll which is not needed for NVP.
1 parent e79fd96 commit aa6b6cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
# Pack only the relevant binaries (and their checksums) from build/
8181
# Add additional files (LICENSE, README, configs) if desired with extra -C args.
8282
tar -czf "${NEC_TAR}" --exclude="build/nimbus_verified_proxy*" -C "${ARCHIVE_DIR}" .
83-
tar -czf "${NVP_TAR}" --exclude="build/nimbus_execution_client*" -C "${ARCHIVE_DIR}" .
83+
tar -czf "${NVP_TAR}" --exclude="build/nimbus_execution_client*" --exclude="build/librocksdb.dll" -C "${ARCHIVE_DIR}" .
8484
8585
# Generate sha512 for the tarballs themselves
8686
sha512sum "${NEC_TAR}" > "${NEC_TAR}.sha512sum"

0 commit comments

Comments
 (0)