Send back to true and remove .pdb from release
This commit is contained in:
parent
35ca253dad
commit
6ccfc7feb9
13
.github/workflows/release.yml
vendored
13
.github/workflows/release.yml
vendored
@ -24,21 +24,14 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
zig build release
|
zig build release
|
||||||
|
|
||||||
- name: List directory contents
|
|
||||||
run: |
|
|
||||||
echo "Current directory:"
|
|
||||||
ls -R
|
|
||||||
echo "zig-out directory:"
|
|
||||||
ls -R zig-out
|
|
||||||
|
|
||||||
- name: Create zip files for release artifacts
|
- name: Create zip files for release artifacts
|
||||||
run: |
|
run: |
|
||||||
mkdir -p zig-out/release/zips
|
mkdir -p zig-out/release/zips
|
||||||
for file in zig-out/release/*; do
|
for file in zig-out/release/*; do
|
||||||
if [ -f "$file" ]; then
|
if [ -f "$file" ] && [[ "$(basename "$file")" != *.pdb ]]; then
|
||||||
zip -j "zig-out/release/zips/${file##*/}.zip" "$file"
|
zip -j "zig-out/release/zips/$(basename "$file").zip" "$file"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
- name: Upload release artifacts
|
- name: Upload release artifacts
|
||||||
uses: ncipollo/release-action@v1
|
uses: ncipollo/release-action@v1
|
||||||
|
@ -4,7 +4,7 @@ pub const CPU_CORE = 16;
|
|||||||
|
|
||||||
// Debug
|
// Debug
|
||||||
pub const PRINT_STATE = false;
|
pub const PRINT_STATE = false;
|
||||||
pub const DONT_SEND = true;
|
pub const DONT_SEND = false;
|
||||||
pub const DONT_SEND_ERROR = false;
|
pub const DONT_SEND_ERROR = false;
|
||||||
pub const RESET_LOG_AT_RESTART = false; // If true, will reset the log file at the start of the db, otherwise just keep adding to it
|
pub const RESET_LOG_AT_RESTART = false; // If true, will reset the log file at the start of the db, otherwise just keep adding to it
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user