From 47551697a08caa1c23ea5ea328c02ba1d5549cb2 Mon Sep 17 00:00:00 2001 From: Neel Dalsania Date: Mon, 30 Sep 2024 19:26:06 +0530 Subject: [PATCH] update README version to upcoming v0.7.1 release (#86) --- README.md | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 81985ad..7dfccbc 100644 --- a/README.md +++ b/README.md @@ -120,7 +120,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Deploy to Astro - uses: astronomer/deploy-action@v0.7 + uses: astronomer/deploy-action@v0.7.1 with: deployment-id: parse: true @@ -135,7 +135,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.7 + uses: astronomer/deploy-action@v0.7.1 with: deployment-id: root-folder: /example-dags/ @@ -148,7 +148,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.7 + uses: astronomer/deploy-action@v0.7.1 with: deployment-id: pytest: true @@ -162,7 +162,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.7 + uses: astronomer/deploy-action@v0.7.1 with: deployment-id: force: true @@ -205,7 +205,7 @@ jobs: build-args: | - name: Deploy to Astro - uses: astronomer/deploy-action@v0.7 + uses: astronomer/deploy-action@v0.7.1 with: deployment-id: deploy-type: image-and-dags @@ -220,7 +220,7 @@ 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.7 + uses: astronomer/deploy-action@v0.7.1 with: deployment-id: deploy-type: dbt @@ -234,13 +234,13 @@ In the following example we would setup a workflow to deploy dags/images located ```yaml steps: - name: DBT Deploy to Astro - uses: astronomer/deploy-action@v0.7 + uses: astronomer/deploy-action@v0.7.1 with: deployment-id: deploy-type: dbt root-folder: dbt - name: DAGs/Image Deploy to Astro - uses: astronomer/deploy-action@v0.7 + uses: astronomer/deploy-action@v0.7.1 with: deployment-id: root-folder: astro-project/ @@ -275,7 +275,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create Deployment Preview - uses: astronomer/deploy-action@v0.7 + uses: astronomer/deploy-action@v0.7.1 with: action: create-deployment-preview deployment-id: @@ -300,7 +300,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Deploy to Deployment Preview - uses: astronomer/deploy-action@v0.7 + uses: astronomer/deploy-action@v0.7.1 with: action: deploy-deployment-preview deployment-id: @@ -325,7 +325,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Deploy to Deployment Preview - uses: astronomer/deploy-action@v0.7 + uses: astronomer/deploy-action@v0.7.1 with: action: deploy-deployment-preview deploy-type: dbt @@ -352,7 +352,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Delete Deployment Preview - uses: astronomer/deploy-action@v0.7 + uses: astronomer/deploy-action@v0.7.1 with: action: delete-deployment-preview deployment-id: @@ -377,7 +377,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Deploy to Astro - uses: astronomer/deploy-action@v0.7 + uses: astronomer/deploy-action@v0.7.1 with: deployment-id: ```