FINAL RUN #9
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: Python Proj | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Configure AWS | |
uses: aws-actions/configure-aws-credentials@v3 | |
with: | |
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_ID }} | |
aws-region: ${{ secrets.AWS_REGION }} | |
- name: Deploy code to S3 bucket | |
run: aws s3 sync . s3://aniketbucket3/Python-Proj --delete | |
# - name: Install Python | |
# run: sudo apt-get update && sudo apt-get install -y python3 | |
- name: Copying Python file from S3 bucket | |
run: aws s3 cp s3://aniketbucket3/Python-Proj/script.sh . | |
- name: Run Script to run python file | |
run: | | |
echo "Current Directory: $(pwd)" | |
chmod +x script.sh | |
./script.sh |