Update docs for EMR 7.x - closes #56 #88
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
name: MWAA Release Artifacts | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build zip | |
run: | | |
cd airflow | |
zip ../mwaa_plugin.zip emr_serverless/*/*.py setup.py | |
- name: Archive zip results | |
uses: actions/upload-artifact@v2 | |
with: | |
name: build-artifacts | |
path: | | |
mwaa_plugin.zip |