-
Notifications
You must be signed in to change notification settings - Fork 17
50 lines (40 loc) · 1.36 KB
/
pratham-scp-prod.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Node CI
on:
push:
branches:
- shiksha-2.0
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: npm install, build
run: |
npm install
npm run build
- name: Show PWD
run: |
echo "Current Working Directory:"
pwd
- name: List Contents
run: |
echo "Contents of the current directory (in reverse order):"
ls -lra
- name: List Contents
run: |
echo "Contents of the dist directory (in reverse order):"
cd /home/runner/work/shiksha-frontend/shiksha-frontend/.next/
ls -lr
- name: Install AWS CLI
run: |
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y awscli
- name: Configure AWS credentials
run: |
aws configure set aws_access_key_id ${{ secrets.AWS_ACCESS_KEY_ID }}
aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws configure set default.region ${{ secrets.AWS_S3_BUCKET_REGION }}
- name: Upload to s3 Bucket
run: |
aws s3 rm s3://${{ secrets.AWS_S3_BUCKET }}/_next/ --recursive
aws s3 sync ./.next s3://${{ secrets.AWS_S3_BUCKET }}/_next/