@@ -183,9 +183,9 @@ jobs:
183183 fi
184184 git tag "${{ env.TAG_NAME }}"
185185 if git push origin "${{ env.TAG_NAME }}"; then
186- echo "✓ Tag ${{ env.TAG_NAME }} pushed successfully"
186+ echo "[PASS] Tag ${{ env.TAG_NAME }} pushed successfully"
187187 else
188- echo "⚠️ Failed to push tag (permissions issue?), continuing anyway..."
188+ echo "[WARN] Failed to push tag (permissions issue?), continuing anyway..."
189189 fi
190190 shell : bash
191191 - name : Create Release Notes (Custom Version)
@@ -291,21 +291,21 @@ jobs:
291291 shell : bash
292292 - name : Test Import All Modules
293293 run : |
294- python -c "from nextssl import hash, dhcm, pow, pqc, primitives, kdf, encoding, root, unsafe; print('✓ All modules imported successfully')"
295- python -c "from nextssl import Hash, BLAKE2, SHAKE, Argon2; print('✓ Hash classes imported')"
296- python -c "from nextssl import KEM, Sign; print('✓ PQC classes imported')"
297- python -c "from nextssl import AES, ChaCha20Poly1305; print('✓ Cipher classes imported')"
298- python -c "from nextssl import Ed25519, Ed448, Curve25519, Curve448; print('✓ ECC classes imported')"
299- python -c "from nextssl import MAC, SipHash; print('✓ MAC classes imported')"
300- python -c "from nextssl import HKDF, KDF_SHAKE256; print('✓ KDF classes imported')"
301- python -c "from nextssl import Base64, Hex, FlexFrame70; print('✓ Encoding classes imported')"
302- python -c "import nextssl.root; print('✓ Root module imported')"
303- python -c "import nextssl.unsafe; print('✓ Unsafe module imported')"
294+ python -c "from nextssl import hash, dhcm, pow, pqc, primitives, kdf, encoding, root, unsafe; print('[PASS] All modules imported successfully')"
295+ python -c "from nextssl import Hash, BLAKE2, SHAKE, Argon2; print('[PASS] Hash classes imported')"
296+ python -c "from nextssl import KEM, Sign; print('[PASS] PQC classes imported')"
297+ python -c "from nextssl import AES, ChaCha20Poly1305; print('[PASS] Cipher classes imported')"
298+ python -c "from nextssl import Ed25519, Ed448, Curve25519, Curve448; print('[PASS] ECC classes imported')"
299+ python -c "from nextssl import MAC, SipHash; print('[PASS] MAC classes imported')"
300+ python -c "from nextssl import HKDF, KDF_SHAKE256; print('[PASS] KDF classes imported')"
301+ python -c "from nextssl import Base64, Hex, FlexFrame70; print('[PASS] Encoding classes imported')"
302+ python -c "import nextssl.root; print('[PASS] Root module imported')"
303+ python -c "import nextssl.unsafe; print('[PASS] Unsafe module imported')"
304304 shell : bash
305305 - name : Report Success
306306 run : |
307307 echo "=========================================="
308- echo "✅ Verification passed on ${{ matrix.os }}"
308+ echo "[SUCCESS] Verification passed on ${{ matrix.os }}"
309309 echo "Package: nextssl==${{ env.PY_VERSION }}"
310310 echo "Source: ${{ env.RELEASE_MODE == 'test' && 'TestPyPI' || 'PyPI' }}"
311311 echo "Platform: ${{ matrix.os }}"
@@ -362,15 +362,15 @@ jobs:
362362 echo " Verify: ${{ needs.verify.result }}"
363363 echo ""
364364 if [ "${{ needs.verify.result }}" = "success" ]; then
365- echo "✅ ALL CHECKS PASSED"
365+ echo "[SUCCESS] ALL CHECKS PASSED"
366366 echo "Package successfully published and verified on all platforms!"
367367 if [ "${{ env.RELEASE_MODE }}" = "test" ]; then
368- echo "📦 TestPyPI: https://test.pypi.org/project/nextssl/"
368+ echo "[PACKAGE] TestPyPI: https://test.pypi.org/project/nextssl/"
369369 else
370- echo "📦 PyPI: https://pypi.org/project/nextssl/"
370+ echo "[PACKAGE] PyPI: https://pypi.org/project/nextssl/"
371371 fi
372372 else
373- echo "⚠️ Some checks failed - review logs above"
373+ echo "[WARN] Some checks failed - review logs above"
374374 fi
375375 echo "=================================================="
376376 shell : bash
0 commit comments