Skip to content

Instantly share code, notes, and snippets.

@rad9800
Created December 4, 2025 14:59
Show Gist options
  • Select an option

  • Save rad9800/fc06ce7d2fe7866cec963dc98521c610 to your computer and use it in GitHub Desktop.

Select an option

Save rad9800/fc06ce7d2fe7866cec963dc98521c610 to your computer and use it in GitHub Desktop.
Configuration backup
name: Deploy to AWS
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: AKIAQCL4SDHW7DMOIMMC
aws-secret-access-key: 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
aws-region: us-east-1
- name: Deploy to S3
run: aws s3 sync ./dist s3://my-bucket/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment