ci: init production ci

This commit is contained in:
bdeshi 2024-05-17 09:18:22 +06:00
parent 27f5a56d83
commit e03d2903f8
Signed by: bdeshi
GPG Key ID: 410D03DA9A3468E0

View File

@ -1,7 +1,29 @@
# https://woodpecker-ci.org/docs/intro # https://woodpecker-ci.org/docs/intro
pipeline: # https://woodpecker-ci.org/docs/intro
build:
image: alpine:3 when:
event: [push, manual]
branch: main
steps:
- name: build
image: node:18-alpine
when:
- path:
exclude: ['meta/**']
commands: commands:
- echo "built!" - yarn build
- name: publish
image: amazon/aws-cli:2.15.50
depends_on: [ build ]
commands:
- s3 cp --recursive ./dist s3://$${S3_BUCKET}/
- cloudfront create-invalidation --distribution-id $${CLOUDFRONT_DISTRIBUTION} --paths '/*'
secrets:
- S3_BUCKET
- CLOUDFRONT_DISTRIBUTION
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
- AWS_REGION