Skip to content

Commit

Permalink
deployed
Browse files Browse the repository at this point in the history
  • Loading branch information
Mesgna616 committed Feb 3, 2024
1 parent d1e5623 commit b3c059b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/frontend-s3-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,26 @@ on:
- "*"

jobs:
deploy:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2

- name: Configure AWS credentials
- name: Install dependencies
run: npm install

- name: Build website
run: npm run build

- name: Set AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:

aws-access-key-id: ${{ secrets.MY_SECRET_ACCESS_ID_KEY }}
aws-secret-access-key: ${{ secrets.MY_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.REGION }}
Expand Down

0 comments on commit b3c059b

Please sign in to comment.