Created
December 4, 2025 14:59
-
-
Save rad9800/fc06ce7d2fe7866cec963dc98521c610 to your computer and use it in GitHub Desktop.
Configuration backup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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