You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -99,7 +99,7 @@ jobs:
99
99
runs-on: ubuntu-latest
100
100
steps:
101
101
- name: Deploy to Astro
102
-
uses: astronomer/deploy-action@v0.6
102
+
uses: astronomer/deploy-action@v0.7
103
103
with:
104
104
deployment-id: <deployment id>
105
105
parse: true
@@ -114,7 +114,7 @@ In the following example, the folder `/example-dags/` is specified as the root f
114
114
```yaml
115
115
steps:
116
116
- name: Deploy to Astro
117
-
uses: astronomer/deploy-action@v0.6
117
+
uses: astronomer/deploy-action@v0.7
118
118
with:
119
119
deployment-id: <deployment id>
120
120
root-folder: /example-dags/
@@ -127,7 +127,7 @@ In the following example, the pytest located at `/tests/test-tags.py` runs befor
127
127
```yaml
128
128
steps:
129
129
- name: Deploy to Astro
130
-
uses: astronomer/deploy-action@v0.6
130
+
uses: astronomer/deploy-action@v0.7
131
131
with:
132
132
deployment-id: <deployment id>
133
133
pytest: true
@@ -141,7 +141,7 @@ In the following example, `force` is enabled and both the DAG parse and pytest p
141
141
```yaml
142
142
steps:
143
143
- name: Deploy to Astro
144
-
uses: astronomer/deploy-action@v0.6
144
+
uses: astronomer/deploy-action@v0.7
145
145
with:
146
146
deployment-id: <deployment id>
147
147
force: true
@@ -184,7 +184,7 @@ jobs:
184
184
build-args: |
185
185
<your-build-arguments>
186
186
- name: Deploy to Astro
187
-
uses: astronomer/deploy-action@v0.6
187
+
uses: astronomer/deploy-action@v0.7
188
188
with:
189
189
deployment-id: <deployment id>
190
190
deploy-type: image-and-dags
@@ -199,27 +199,27 @@ In the following example we would be deploying the dbt project located at `dbt`
199
199
```yaml
200
200
steps:
201
201
- name: DBT Deploy to Astro
202
-
uses: astronomer/deploy-action@v0.6
202
+
uses: astronomer/deploy-action@v0.7
203
203
with:
204
204
deployment-id: <deployment id>
205
205
deploy-type: dbt
206
206
root-folder: dbt
207
207
```
208
208
209
-
### Deploy DAGs anad DBT project from same repo
209
+
### Deploy DAGs and DBT project from same repo
210
210
211
211
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
0 commit comments