update deployment #6
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: Deploy (checkdeployaction) | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
prod-astronomer: | |
env: | |
ASTRO_API_TOKEN: ${{ secrets.ASTRO_API_TOKEN }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Print GITHUB_ACTIONS env var | |
run: echo "GITHUB_ACTIONS=${GITHUB_ACTIONS}" | |
- name: Deploy to Astronomer | |
uses: astronomer/deploy-action@dbt-deploy | |
with: | |
deployment-name: neel-test-1 | |
workspace: ${{ secrets.WORKSPACE_ID }} | |
- name: DBT Deploy | |
uses: astronomer/deploy-action@dbt-deploy | |
with: | |
action: dbt-deploy | |
deployment-name: neel-test-1 | |
workspace: ${{ secrets.WORKSPACE_ID }} |