build issue solve (#18) #24
This file contains 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: S3 Deployment on the Piramal-OU Tekdi | |
on: [push] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- name: npm install, build | |
run: | | |
ls -ltra | |
if [ -f .env ]; then | |
rm .env | |
fi | |
echo '${{ secrets.DEV_ENV }}' > .env | |
ls -ltra | |
yarn install | |
yarn build | |
ls -ltra | |
- name: Show PWD | |
run: | | |
echo "Current Working Directory:" | |
pwd | |
- name: List Contents | |
run: | | |
echo "Contents of the current directory (in reverse order):" | |
ls -lr | |
- name: List Contents | |
run: | | |
echo "Contents of the dist directory (in reverse order):" | |
cd | |
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 sync dist s3://${{ secrets.AWS_S3_BUCKET }}/ | |
aws cloudfront create-invalidation --distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} --paths "/*" |