Skip to content

Commit

Permalink
update README version to upcoming v0.7.1 release (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
neel-astro authored Sep 30, 2024
1 parent 6e70894 commit 4755169
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Deploy to Astro
uses: astronomer/[email protected]
uses: astronomer/[email protected].1
with:
deployment-id: <deployment id>
parse: true
Expand All @@ -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/[email protected]
uses: astronomer/[email protected].1
with:
deployment-id: <deployment id>
root-folder: /example-dags/
Expand All @@ -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/[email protected]
uses: astronomer/[email protected].1
with:
deployment-id: <deployment id>
pytest: true
Expand All @@ -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/[email protected]
uses: astronomer/[email protected].1
with:
deployment-id: <deployment id>
force: true
Expand Down Expand Up @@ -205,7 +205,7 @@ jobs:
build-args: |
<your-build-arguments>
- name: Deploy to Astro
uses: astronomer/[email protected]
uses: astronomer/[email protected].1
with:
deployment-id: <deployment id>
deploy-type: image-and-dags
Expand All @@ -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/[email protected]
uses: astronomer/[email protected].1
with:
deployment-id: <deployment id>
deploy-type: dbt
Expand All @@ -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/[email protected]
uses: astronomer/[email protected].1
with:
deployment-id: <deployment id>
deploy-type: dbt
root-folder: dbt
- name: DAGs/Image Deploy to Astro
uses: astronomer/[email protected]
uses: astronomer/[email protected].1
with:
deployment-id: <deployment id>
root-folder: astro-project/
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Create Deployment Preview
uses: astronomer/[email protected]
uses: astronomer/[email protected].1
with:
action: create-deployment-preview
deployment-id: <orginal deployment id>
Expand All @@ -300,7 +300,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Deploy to Deployment Preview
uses: astronomer/[email protected]
uses: astronomer/[email protected].1
with:
action: deploy-deployment-preview
deployment-id: <orginal deployment id>
Expand All @@ -325,7 +325,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Deploy to Deployment Preview
uses: astronomer/[email protected]
uses: astronomer/[email protected].1
with:
action: deploy-deployment-preview
deploy-type: dbt
Expand All @@ -352,7 +352,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Delete Deployment Preview
uses: astronomer/[email protected]
uses: astronomer/[email protected].1
with:
action: delete-deployment-preview
deployment-id: <orginal deployment id>
Expand All @@ -377,7 +377,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Deploy to Astro
uses: astronomer/[email protected]
uses: astronomer/[email protected].1
with:
deployment-id: <orginal deployment id>
```

0 comments on commit 4755169

Please sign in to comment.