Skip to content

Use the correct term FQDN instead of just "domain" (#5) #14

Use the correct term FQDN instead of just "domain" (#5)

Use the correct term FQDN instead of just "domain" (#5) #14

Workflow file for this run

name: Deploy to S3
on:
push:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Sync files to S3
working-directory: scripts
run: |
aws s3 sync . s3://openops.sh \
--delete \
--size-only \
--no-guess-mime-type \
--content-type="text/plain"
- name: Invalidate CloudFront cache
run: |
aws cloudfront create-invalidation \
--distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} \
--paths "/*"