diff --git a/test_log.ps1 b/test_log.ps1 new file mode 100644 index 0000000..91f939e --- /dev/null +++ b/test_log.ps1 @@ -0,0 +1,10 @@ +# Script: test_log.ps1 +# Objetivo: Crear un archivo de registro para confirmar la ejecución. + +$LogPath = "C:\TEMP\safecloud_test_success.log" +$Timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss" + +$Content = "Prueba de Gitea y Action1 exitosa. El script se ejecutó el $Timestamp" + +# Escribe el contenido en el archivo de registro +Set-Content -Path $LogPath -Value $Content -Force \ No newline at end of file