From e6e4fdf107e07daaae50962882d9e517bad82023 Mon Sep 17 00:00:00 2001 From: Neel Dalsania Date: Mon, 4 Nov 2024 20:26:52 +0530 Subject: [PATCH] Update release version for examples to v0.8.0 (#92) --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index ee47a01..abd8448 100644 --- a/README.md +++ b/README.md @@ -121,7 +121,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Deploy to Astro - uses: astronomer/deploy-action@v0.7.1 + uses: astronomer/deploy-action@v0.8.0 with: deployment-id: parse: true @@ -136,7 +136,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.1 + uses: astronomer/deploy-action@v0.8.0 with: deployment-id: root-folder: /example-dags/ @@ -149,7 +149,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.1 + uses: astronomer/deploy-action@v0.8.0 with: deployment-id: pytest: true @@ -163,7 +163,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.1 + uses: astronomer/deploy-action@v0.8.0 with: deployment-id: force: true @@ -206,7 +206,7 @@ jobs: build-args: | - name: Deploy to Astro - uses: astronomer/deploy-action@v0.7.1 + uses: astronomer/deploy-action@v0.8.0 with: deployment-id: deploy-type: image-and-dags @@ -221,7 +221,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.1 + uses: astronomer/deploy-action@v0.8.0 with: deployment-id: deploy-type: dbt @@ -235,13 +235,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.1 + uses: astronomer/deploy-action@v0.8.0 with: deployment-id: deploy-type: dbt root-folder: dbt - name: DAGs/Image Deploy to Astro - uses: astronomer/deploy-action@v0.7.1 + uses: astronomer/deploy-action@v0.8.0 with: deployment-id: root-folder: astro-project/ @@ -255,7 +255,7 @@ In the following example, the deployment is woken up from hibernation before dep ```yaml steps: - name: Deploy to Astro - uses: astronomer/deploy-action@v0.7.1 + uses: astronomer/deploy-action@v0.8.0 with: deployment-id: wake-on-deploy: true @@ -291,7 +291,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Create Deployment Preview - uses: astronomer/deploy-action@v0.7.1 + uses: astronomer/deploy-action@v0.8.0 with: action: create-deployment-preview deployment-id: @@ -316,7 +316,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Deploy to Deployment Preview - uses: astronomer/deploy-action@v0.7.1 + uses: astronomer/deploy-action@v0.8.0 with: action: deploy-deployment-preview deployment-id: @@ -341,7 +341,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Deploy to Deployment Preview - uses: astronomer/deploy-action@v0.7.1 + uses: astronomer/deploy-action@v0.8.0 with: action: deploy-deployment-preview deploy-type: dbt @@ -368,7 +368,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Delete Deployment Preview - uses: astronomer/deploy-action@v0.7.1 + uses: astronomer/deploy-action@v0.8.0 with: action: delete-deployment-preview deployment-id: @@ -393,7 +393,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Deploy to Astro - uses: astronomer/deploy-action@v0.7.1 + uses: astronomer/deploy-action@v0.8.0 with: deployment-id: ```