@@ -121,7 +121,7 @@ jobs:
121
121
runs-on : ubuntu-latest
122
122
steps :
123
123
- name : Deploy to Astro
124
- uses : astronomer/deploy-action@v0.7.1
124
+ uses : astronomer/deploy-action@v0.8.0
125
125
with :
126
126
deployment-id : <deployment id>
127
127
parse : true
@@ -136,7 +136,7 @@ In the following example, the folder `/example-dags/` is specified as the root f
136
136
` ` ` yaml
137
137
steps:
138
138
- name: Deploy to Astro
139
- uses: astronomer/deploy-action@v0.7.1
139
+ uses: astronomer/deploy-action@v0.8.0
140
140
with:
141
141
deployment-id: <deployment id>
142
142
root-folder: /example-dags/
@@ -149,7 +149,7 @@ In the following example, the pytest located at `/tests/test-tags.py` runs befor
149
149
` ` ` yaml
150
150
steps:
151
151
- name: Deploy to Astro
152
- uses: astronomer/deploy-action@v0.7.1
152
+ uses: astronomer/deploy-action@v0.8.0
153
153
with:
154
154
deployment-id: <deployment id>
155
155
pytest: true
@@ -163,7 +163,7 @@ In the following example, `force` is enabled and both the DAG parse and pytest p
163
163
` ` ` yaml
164
164
steps:
165
165
- name: Deploy to Astro
166
- uses: astronomer/deploy-action@v0.7.1
166
+ uses: astronomer/deploy-action@v0.8.0
167
167
with:
168
168
deployment-id: <deployment id>
169
169
force: true
@@ -206,7 +206,7 @@ jobs:
206
206
build-args : |
207
207
<your-build-arguments>
208
208
- name : Deploy to Astro
209
- uses : astronomer/deploy-action@v0.7.1
209
+ uses : astronomer/deploy-action@v0.8.0
210
210
with :
211
211
deployment-id : <deployment id>
212
212
deploy-type : image-and-dags
@@ -221,7 +221,7 @@ In the following example we would be deploying the dbt project located at `dbt`
221
221
``` yaml
222
222
steps :
223
223
- name : DBT Deploy to Astro
224
- uses : astronomer/deploy-action@v0.7.1
224
+ uses : astronomer/deploy-action@v0.8.0
225
225
with :
226
226
deployment-id : <deployment id>
227
227
deploy-type : dbt
@@ -235,13 +235,13 @@ In the following example we would setup a workflow to deploy dags/images located
235
235
` ` ` yaml
236
236
steps:
237
237
- name: DBT Deploy to Astro
238
- uses: astronomer/deploy-action@v0.7.1
238
+ uses: astronomer/deploy-action@v0.8.0
239
239
with:
240
240
deployment-id: <deployment id>
241
241
deploy-type: dbt
242
242
root-folder: dbt
243
243
- name: DAGs/Image Deploy to Astro
244
- uses: astronomer/deploy-action@v0.7.1
244
+ uses: astronomer/deploy-action@v0.8.0
245
245
with:
246
246
deployment-id: <deployment id>
247
247
root-folder: astro-project/
@@ -255,7 +255,7 @@ In the following example, the deployment is woken up from hibernation before dep
255
255
` ` ` yaml
256
256
steps:
257
257
- name: Deploy to Astro
258
- uses: astronomer/deploy-action@v0.7.1
258
+ uses: astronomer/deploy-action@v0.8.0
259
259
with:
260
260
deployment-id: <deployment id>
261
261
wake-on-deploy: true
@@ -291,7 +291,7 @@ jobs:
291
291
runs-on: ubuntu-latest
292
292
steps:
293
293
- name: Create Deployment Preview
294
- uses: astronomer/deploy-action@v0.7.1
294
+ uses: astronomer/deploy-action@v0.8.0
295
295
with:
296
296
action: create-deployment-preview
297
297
deployment-id: <orginal deployment id>
@@ -316,7 +316,7 @@ jobs:
316
316
runs-on: ubuntu-latest
317
317
steps:
318
318
- name: Deploy to Deployment Preview
319
- uses: astronomer/deploy-action@v0.7.1
319
+ uses: astronomer/deploy-action@v0.8.0
320
320
with:
321
321
action: deploy-deployment-preview
322
322
deployment-id: <orginal deployment id>
@@ -341,7 +341,7 @@ jobs:
341
341
runs-on: ubuntu-latest
342
342
steps:
343
343
- name: Deploy to Deployment Preview
344
- uses: astronomer/deploy-action@v0.7.1
344
+ uses: astronomer/deploy-action@v0.8.0
345
345
with:
346
346
action: deploy-deployment-preview
347
347
deploy-type: dbt
@@ -368,7 +368,7 @@ jobs:
368
368
runs-on: ubuntu-latest
369
369
steps:
370
370
- name: Delete Deployment Preview
371
- uses: astronomer/deploy-action@v0.7.1
371
+ uses: astronomer/deploy-action@v0.8.0
372
372
with:
373
373
action: delete-deployment-preview
374
374
deployment-id: <orginal deployment id>
@@ -393,7 +393,7 @@ jobs:
393
393
runs-on: ubuntu-latest
394
394
steps:
395
395
- name: Deploy to Astro
396
- uses: astronomer/deploy-action@v0.7.1
396
+ uses: astronomer/deploy-action@v0.8.0
397
397
with:
398
398
deployment-id: <orginal deployment id>
399
399
` ` `
0 commit comments