image: node:18.20.4-bullseye variables: SITE_NAME: cf2024.online ARTIFACTS_PATH: build REACT_APP_API_BASE_URL: /api WEBHOOK_URL: https://ha-web.pirati.cz before_script: - apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yq curl build: stage: build script: - npm install --legacy-peer-deps - npm run build after_script: - echo "{\"name\":\"$SITE_NAME\" }" > request.json - "curl -k -H 'Content-Type: application/json' -X POST -d @request.json $WEBHOOK_URL" artifacts: expire_in: 30 min paths: - $ARTIFACTS_PATH