Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,15 @@ jobs:
- name: Create ZIP archive (Windows)
if: matrix.os == 'windows-latest'
run: |
Compress-Archive -Path bin\msgraphtool${{ matrix.ext }},bin\smtptool${{ matrix.ext }},bin\imaptool${{ matrix.ext }},bin\pop3tool${{ matrix.ext }},bin\jmaptool${{ matrix.ext }},README.md,SMTP_TOOL_README.md,BUILD.md,EXAMPLES.md,LICENSE -DestinationPath ${{ matrix.zip_name }}
Compress-Archive -Path bin\msgraphtool${{ matrix.ext }},bin\smtptool${{ matrix.ext }},bin\imaptool${{ matrix.ext }},bin\pop3tool${{ matrix.ext }},bin\jmaptool${{ matrix.ext }},README.md,*_TOOL_README.md,EXAMPLES.md,LICENSE -DestinationPath ${{ matrix.zip_name }}
Write-Host "Created ZIP archive: ${{ matrix.zip_name }}"
Get-Item ${{ matrix.zip_name }} | Select-Object Name, Length

- name: Create ZIP archive (Linux/macOS)
if: matrix.os != 'windows-latest'
run: |
cd bin && zip ../${{ matrix.zip_name }} msgraphtool${{ matrix.ext }} smtptool${{ matrix.ext }} imaptool${{ matrix.ext }} pop3tool${{ matrix.ext }} jmaptool${{ matrix.ext }} && cd ..
zip -u ${{ matrix.zip_name }} README.md SMTP_TOOL_README.md BUILD.md EXAMPLES.md LICENSE
zip -u ${{ matrix.zip_name }} README.md *_TOOL_README.md EXAMPLES.md LICENSE
echo "Created ZIP archive: ${{ matrix.zip_name }}"
ls -lh ${{ matrix.zip_name }}

Expand Down Expand Up @@ -167,8 +167,7 @@ jobs:

Plus documentation:
- **README.md** - Main documentation
- **SMTP_TOOL_README.md** - Complete SMTP tool guide
- **BUILD.md** - Build instructions
- ** *_TOOL_README.md** - specific protocols tool guide
- **EXAMPLES.md** - Usage examples
- **LICENSE** - MIT License

Expand Down
110 changes: 0 additions & 110 deletions GEMINI.md

This file was deleted.

Loading