Skip to content

Commit

Permalink
Update GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
ernest-tpximpact committed May 13, 2024
1 parent 60fc2b7 commit 72c08ab
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Deploy dags To aws

on:
push:
branches: [setup-gha-workflow]
workflow_dispatch:
inputs:
environment:
type: environment
description: The environment to deploy to.

jobs:
deploy:
runs-on: ubuntu-latest
environment: development
# env:
steps:
- uses: actions/checkout@v4

- run: |
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip -q awscliv2.zip
sudo ./aws/install --update
sudo apt-get update
sudo apt-get install -y rsync
- uses: aws-actions/configure-aws-credentials@v1-node16
with:
aws-access-key-id: ${{ secrets.DEPLOY_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.DEPLOY_AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-2

0 comments on commit 72c08ab

Please sign in to comment.