diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 9950d2715..92f1d54ef 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1,2 @@ deploy.sh @cmcarthur -.github/* @cmcarthur +.github @cmcarthur diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 000000000..beab1f3a2 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,16 @@ +name: Deploy hub.getdbt.com +on: + push: + branches: + - 'master' +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Deploy + env: + AWS_REGION: us-east-1 + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + run: | + ./deploy.sh