GitHub Action
Deploy Apache Airflow DAGs to Astro
This GitHub action automates deploying code from your GitHub repository to a Deployment on Astro, Astronomer's data orchestration platform and managed service for Apache Airflow.
You can use and configure this GitHub action to easily deploy Apache Airflow DAGs to an Airflow environment on Astro. Specifically, you can:
- Avoid manually running
astro deploy
with the Astro CLI every time you make a change to your Astro project. - Automate deploying code to Astro when you merge changes to a certain branch in your repository.
- Incorporate unit tests for your DAGs as part of the deploy process.
- Create/delete a Deployment Preview. A Deployment Preview is an Astro Deployment that mirrors the configuration of your original Deployment.
This GitHub action runs as a step within a GitHub workflow file. When your CI/CD pipeline is triggered, this action:
- Checks out your GitHub repository.
- Optionally creates or deletes a Deployment Preview to test your code changes on before deploying to production.
- Checks whether your commit only changed DAG code.
- Optional. Tests DAG code with
pytest
. See Run tests with pytest. - Either runs:
astro deploy --dags
if the commit only includes DAG code changes,- or
astro deploy
(as well asastro dev parse
) if the commit includes any non-DAG-code-related changes.
To use this GitHub action, you need:
- An Astro project. See Create a project.
- A Deployment on Astro. See Create a Deployment.
- An Organization, Workspace, or Deployment API Token. See API Tokens
- Or (deprecated) a Deployment API key ID and secret. See Deployment API keys.
Tip
Astronomer recommends using GitHub Actions secrets to store ASTRO_API_TOKEN
or Deployment API Keys. See the example in Workflow file examples.
To use this action, read Automate code deploys with CI/CD. You will:
- Create a GitHub Actions workflow in your repository that uses the latest version of this action. For example,
astronomer/[email protected]
. - Configure the workflow to fit your team's use case. This could include creating a deployment preview or adding tests. See Configuration options.
- Make changes to your Astro project files in GitHub and let this GitHub Actions workflow take care of deploying your code to Astro.
Tip
Astronomer recommends setting up multiple environments on Astro. See the Multiple branch GitHub Actions workflow in Astronomer documentation.
The following table lists the configuration options for the Deploy to Astro action.
Name | Default | Description |
---|---|---|
action |
deploy |
Specify what action you would like to take. Use this option to create or delete deployment previews. Specify either create-deployment-preview , delete-deployment-preview or deploy-deployment-preview . Don't sepcify anything if you are deploying to a regular deployment |
deployment-id |
false |
Specifies the id of the deployment you to make a preview from or are deploying too |
deployment-name |
false |
Specifies The name of the deployment you want to make preview from or are deploying too. Cannot be used with deployment-id |
description |
Configure a description for a deploy to Astro. Description will be visible in the Deploy History tab. | |
root-folder |
. |
Specifies the path to the Astro project directory that contains the dags folder |
parse |
false |
When set to true , DAGs are parsed for errors before deploying to Astro. Note that when an image deploy is performed (i.e. astro deploy ), parsing is also executed by default. Parsing is not performed automatically for DAG-only deploys (i.e. astro deploy --dags ). |
pytest |
false |
When set to true , all pytests in the tests directory of your Astro project are run before deploying to Astro. See Run tests with pytest |
pytest-file |
(all tests run) | Specifies a custom pytest file to run with the pytest command. For example, you could specify /tests/test-tags.py |
force |
false |
When set to true , your code is deployed and skips any pytest or parsing errors |
image-name |
Specifies a custom, locally built image to deploy | |
workspace |
Workspace id to select. Only required when ASTRO_API_TOKEN is given an organization token. |
|
preview-name |
false |
Specifies custom preview name. By default this is branch name “_” deployment name |
checkout |
true |
Whether to checkout the repo as the first step. Set this to false if you want to modify repo contents before invoking the action |
In the following example, the GitHub action deploys code to Astro. This example assumes that you have one Astro Deployment and one branch. When a change is merged to the main
branch, your Astro project is deployed to Astro. DAG files are parsed on every deploy and no pytests are ran.
name: Astronomer CI - Deploy code
on:
push:
branches:
- main
env:
## Set API Token as an environment variable
ASTRO_API_TOKEN: ${{ secrets.ASTRO_API_TOKEN }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy to Astro
uses: astronomer/[email protected]
with:
deployment-id: <deployment id>
parse: true
Use the following topics to further configure the action based on your needs.
In the following example, the folder /example-dags/
is specified as the root folder.
steps:
- name: Deploy to Astro
uses: astronomer/[email protected]
with:
deployment-id: <deployment id>
root-folder: /example-dags/
In the following example, the pytest located at /tests/test-tags.py
runs before deploying to Astro.
steps:
- name: Deploy to Astro
uses: astronomer/[email protected]
with:
deployment-id: <deployment id>
pytest: true
pytest-file: /tests/test-tags.py
In the following example, force
is enabled and both the DAG parse and pytest processes are skipped.
steps:
- name: Deploy to Astro
uses: astronomer/[email protected]
with:
deployment-id: <deployment id>
force: true
In the following example, a custom Docker image is built and deployed to an Astro Deployment.
name: Astronomer CI - Additional build-time args
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
env:
## Set API Token as an environment variable
ASTRO_API_TOKEN: ${{ secrets.ASTRO_API_TOKEN
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Create image tag
id: image_tag
run: echo ::set-output name=image_tag::astro-$(date +%Y%m%d%H%M%S)
- name: Build image
uses: docker/build-push-action@v2
with:
tags: ${{ steps.image_tag.outputs.image_tag }}
load: true
# Define your custom image's build arguments, contexts, and connections here using
# the available GitHub Action settings:
# https://github.com/docker/build-push-action#customizing .
# This example uses `build-args` , but your use case might require configuring
# different values.
build-args: |
<your-build-arguments>
- name: Deploy to Astro
uses: astronomer/[email protected]
with:
deployment-id: <deployment id>
image-name: ${{ steps.image_tag.outputs.image_tag }}
This section contains four workflow files that you will need in your repository to have a full Deployment Preview Cycle running for your Deployment. A Deployment Preview is an Astro Deployment that mirrors the configuration of your original Deployment. This Deployment Preview can be used to test your new pipelines changes before pushing them to your original Deployment. The scripts below will take your pipeline changes through the following flow:
- When a new branch is created a Deployment Preview will be created based off your original Deployment
- When a PR is created from a branch code changes will be deployed to the Deployment Preview
- When a PR is merged into your "main" branch code changes will be deployed to the original Deployment
- When a branch is deleted the corresponding Deployment Preview will also be deleted
name: Astronomer CI - Create deployment preview
on:
create:
branches:
- "**"
env:
## Sets Deployment API key credentials as environment variables
ASTRO_API_TOKEN: ${{ secrets.ASTRO_API_TOKEN }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Create Deployment Preview
uses: astronomer/[email protected]
with:
action: create-deployment-preview
deployment-id: <orginal deployment id>
name: Astronomer CI - Deploy code to Preview
on:
pull_request:
branches:
- main
env:
## Sets Deployment API key credentials as environment variables
ASTRO_API_TOKEN: ${{ secrets.ASTRO_API_TOKEN }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy to Deployment Preview
uses: astronomer/[email protected]
with:
action: deploy-deployment-preview
deployment-id: <orginal deployment id>
name: Astronomer CI - Delete Deployment Preview
on:
delete:
branches:
- "**"
env:
## Sets Deployment API key credentials as environment variables
ASTRO_API_TOKEN: ${{ secrets.ASTRO_API_TOKEN }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Create Deployment Preview
uses: astronomer/[email protected]
with:
action: delete-deployment-preview
deployment-id: <orginal deployment id>
name: Astronomer CI - Deploy code to Astro
on:
push:
branches:
- main
env:
## Sets Deployment API key credentials as environment variables
ASTRO_API_TOKEN: ${{ secrets.ASTRO_API_TOKEN }}
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Deploy to Astro
uses: astronomer/[email protected]
with:
deployment-id: <orginal deployment id>