-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated fields to enforce type and added workflow to deploy to cloud
- Loading branch information
1 parent
8eb830e
commit f78a7f4
Showing
5 changed files
with
312 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Astronomer CI - Deploy code | ||
|
||
on: | ||
workflow_dispatch: | ||
# inputs: | ||
# deploymentId: | ||
# description: "Deployment ID" | ||
# required: true | ||
# type: string | ||
# apiToken: | ||
# description: "Astro API Token" | ||
# required: true | ||
# type: string | ||
push: | ||
branches: | ||
- main | ||
|
||
env: | ||
ASTRO_API_TOKEN: ${{ secrets.ASTRO_API_TOKEN }} | ||
DEPLOYMENT_ID: ${{ secrets.DEPLOYMENT_ID }} | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Deploy to Astro | ||
uses: astronomer/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
FROM quay.io/astronomer/astro-runtime:10.6.0 | ||
FROM quay.io/astronomer/astro-runtime:10.8.0 | ||
ENV AIRFLOW__CORE__TEST_CONNECTION=Enabled |
Oops, something went wrong.