Skip to content

Commit

Permalink
Update release version for examples to v0.8.0 (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
neel-astro authored Nov 4, 2024
1 parent cf22781 commit e6e4fdf
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: <deployment id>
parse: true
Expand All @@ -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: <deployment id>
root-folder: /example-dags/
Expand All @@ -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: <deployment id>
pytest: true
Expand All @@ -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: <deployment id>
force: true
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
build-args: |
<your-build-arguments>
- name: Deploy to Astro
uses: astronomer/deploy-action@v0.7.1
uses: astronomer/deploy-action@v0.8.0
with:
deployment-id: <deployment id>
deploy-type: image-and-dags
Expand All @@ -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: <deployment id>
deploy-type: dbt
Expand All @@ -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: <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: <deployment id>
root-folder: astro-project/
Expand All @@ -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: <deployment id>
wake-on-deploy: true
Expand Down Expand Up @@ -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: <orginal deployment id>
Expand All @@ -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: <orginal deployment id>
Expand All @@ -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
Expand All @@ -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: <orginal deployment id>
Expand All @@ -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: <orginal deployment id>
```

0 comments on commit e6e4fdf

Please sign in to comment.