stages: - build - deploy build_static: stage: build image: node:18-alpine script: - npm ci - npx next build - npx next export artifacts: paths: - out/ expire_in: 1 hour only: - devops-s3 deploy_s3: stage: deploy image: amazon/aws-cli:latest script: - aws s3 sync out/ s3://$S3_BUCKET/ --delete only: - devops-s3