From b598870bddb1ad97d2aea3e872e971e7a75eb742 Mon Sep 17 00:00:00 2001 From: Neel Dalsania Date: Thu, 26 Sep 2024 22:25:00 +0530 Subject: [PATCH] update tag reference in README to 0.7 (#83) --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 694fc45..626763e 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Deploy to Astro - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: deployment-id: parse: true @@ -114,7 +114,7 @@ In the following example, the folder `/example-dags/` is specified as the root f ```yaml steps: - name: Deploy to Astro - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: deployment-id: root-folder: /example-dags/ @@ -127,7 +127,7 @@ In the following example, the pytest located at `/tests/test-tags.py` runs befor ```yaml steps: - name: Deploy to Astro - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: deployment-id: pytest: true @@ -141,7 +141,7 @@ In the following example, `force` is enabled and both the DAG parse and pytest p ```yaml steps: - name: Deploy to Astro - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: deployment-id: force: true @@ -184,7 +184,7 @@ jobs: build-args: | - name: Deploy to Astro - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: deployment-id: deploy-type: image-and-dags @@ -199,27 +199,27 @@ In the following example we would be deploying the dbt project located at `dbt` ```yaml steps: - name: DBT Deploy to Astro - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: deployment-id: deploy-type: dbt root-folder: dbt ``` -### Deploy DAGs anad DBT project from same repo +### Deploy DAGs and DBT project from same repo In the following example we would setup a workflow to deploy dags/images located at `astro-project` and dbt deploy from dbt project located at `dbt` folder in the same Github repo ```yaml steps: - name: DBT Deploy to Astro - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: deployment-id: deploy-type: dbt root-folder: dbt - name: DAGs/Image Deploy to Astro - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: deployment-id: root-folder: astro-project/ @@ -254,7 +254,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create Deployment Preview - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: action: create-deployment-preview deployment-id: @@ -279,7 +279,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Deploy to Deployment Preview - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: action: deploy-deployment-preview deployment-id: @@ -304,7 +304,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Deploy to Deployment Preview - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: action: deploy-deployment-preview deploy-type: dbt @@ -331,7 +331,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Delete Deployment Preview - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: action: delete-deployment-preview deployment-id: @@ -356,7 +356,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Deploy to Astro - uses: astronomer/deploy-action@v0.6 + uses: astronomer/deploy-action@v0.7 with: deployment-id: ```