Skip to content

Commit

Permalink
github actions to s3
Browse files Browse the repository at this point in the history
  • Loading branch information
adeniranjohn committed Mar 28, 2024
1 parent 0458dbc commit 0c88c34
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 37 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/firebase-hosting-merge.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/firebase-hosting-pull-request.yml

This file was deleted.

Empty file.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Upload Website

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-2

- name: Deploy static site to S3 bucket
run: aws s3 sync ./public/ s3://adeniranjohn-portfolio --delete

9 changes: 9 additions & 0 deletions src/components/Pages/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,15 @@ const About = () => {
</ul>
</Card> */}

<Card>
Why I am a good fit,
I have a very good flare for designing database for projects, after studying denormalization of database, I have 6 good years ind esigning database for projects and writing queries that is fast tuned for easy access to database

i am a good fit for your backend projects, experience in designing api routes for the for good access and structed way of using api for frontend projects and

cloud projects
</Card>
</section>
</section>
);
Expand Down

0 comments on commit 0c88c34

Please sign in to comment.