Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/upload_and_deploy_changes.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Deploy to AWS Amplify

on: workflow_dispatch

jobs:
deploy-updates:
runs-on: ubuntu-latest
name: Deploying updates

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@0e613a0980cbf65ed5b322eb7a1e075d28913a83
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}

- name: Sync changes to AWS S3 Object
run: |
pwd
aws s3 sync --dryrun . s3://mycrcawsstaticwebsite01/site_frontend/ --exclude ".git/*"
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
<h1>Hi, my name is Daire</h1>
</header>
<div class="content">
<p>A responsive site template designed by HTML5 UP<br />
Here is where you can find out some more about me , my resume, portfolio or passion projects. Currently being edited by me, Daire. Enjoy!! :)</p>
<p>Here is where you can find out some more about me , my resume, portfolio or passion projects.<br />
Enjoy!! :)</p>
<ul class="actions">
<li><a href="#one" class="button next scrolly">Get Started</a></li>
</ul>
Expand Down
Loading