resume-manpage/.woodpecker.yml
bdeshi 8befe6d530
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
chore: move meta dir
2024-05-17 10:05:29 +06:00

28 lines
598 B
YAML

# https://woodpecker-ci.org/docs/intro
when:
event: [push, manual]
branch: main
steps:
- name: build
image: node:18
when:
- path:
exclude: ['_meta/**']
commands:
- yarn install
- yarn build
- name: publish
image: amazon/aws-cli:2.15.50
commands:
- aws s3 sync --delete ./dist s3://$${S3_BUCKET}/
- aws cloudfront create-invalidation --distribution-id $${CLOUDFRONT_DISTRIBUTION} --paths '/*'
secrets:
- S3_BUCKET
- CLOUDFRONT_DISTRIBUTION
- AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY
- AWS_REGION