Compare commits

...

4 Commits

Author SHA1 Message Date
Omar Oughriss
bb1dea088f Update cookie
All checks were successful
Demo - Build & Deploy to Scaleway / build-and-push-image-lecoffre (push) Successful in 16s
Demo - Build & Deploy to Scaleway / deploy-to-scaleway-lecoffre (push) Successful in 3s
2025-07-25 17:02:51 +02:00
Omar Oughriss
222f5acc20 Delete logs 2025-07-25 17:02:44 +02:00
Omar Oughriss
b351d9f839 Add logs
All checks were successful
Demo - Build & Deploy to Scaleway / build-and-push-image-lecoffre (push) Successful in 15s
Demo - Build & Deploy to Scaleway / deploy-to-scaleway-lecoffre (push) Successful in 3s
2025-07-25 16:38:15 +02:00
Omar Oughriss
20a333c106 Update cicd to trigger when push legacy_dev 2025-07-25 16:38:05 +02:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
name: Demo - Build & Deploy to Scaleway name: Demo - Build & Deploy to Scaleway
on: on:
schedule: push:
- cron: '00 15 * * *' # 15:00 UTC -> 17:00 CEST branches: [legacy_dev]
env: env:
PROJECT_ID_LECOFFRE: 72d08499-37c2-412b-877e-f8af0471654a PROJECT_ID_LECOFFRE: 72d08499-37c2-412b-877e-f8af0471654a

View File

@ -15,7 +15,7 @@ export default class CookieService {
const date = new Date(); const date = new Date();
// Set it expire in 7 days // Set it expire in 7 days
date.setTime(date.getTime() + 7 * 24 * 60 * 60 * 1000); date.setTime(date.getTime() + 3 * 60 * 1000);
// Set it // Set it
document.cookie = name + "=" + value + "; expires=" + date.toUTCString() + "; path=/"; document.cookie = name + "=" + value + "; expires=" + date.toUTCString() + "; path=/";