Deploy workflow #12
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: Deploy recipes | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
types: [opened, reopened, synchronize, labeled] | |
jobs: | |
deploy-recipes: | |
name: deploy-recipes | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Authenticate to Google Cloud" | |
id: "auth" | |
uses: "google-github-actions/auth@v1" | |
with: | |
credentials_json: "${{ secrets.GCP_DATAFLOW_SERVICE_KEY }}" | |
- name: "Set prune config based on github event type" | |
run: > | |
if ${{ github.event_name == 'pull_request' }}; then | |
echo prune=true >> $GITHUB_ENV | |
else | |
echo prune=false >> $GITHUB_ENV | |
fi | |
- name: "Deploy recipes" | |
uses: "pangeo-forge/deploy-recipe-action@main" | |
with: | |
select_recipe_by_label: "true" | |
pangeo_forge_runner_config: > | |
{ | |
"Bake": { | |
"prune": ${{ env.prune }}, | |
"bakery_class": "pangeo_forge_runner.bakery.dataflow.DataflowBakery" | |
}, | |
"DataflowBakery": { | |
"use_public_ips": false, | |
"service_account_email": "[email protected]", | |
"project_id": "pangeo-forge-4967", | |
"temp_gcs_location": "gs://pangeo-forge-prod-dataflow/temp" | |
}, | |
"TargetStorage": { | |
"fsspec_class": "s3fs.S3FileSystem", | |
"fsspec_args": { | |
"key": "${{ secrets.PANGEO_FORGE_OSN_KEY }}", | |
"secret": "${{ secrets.PANGEO_FORGE_OSN_SECRET }}", | |
"client_kwargs": { | |
"endpoint_url": "https://ncsa.osn.xsede.org" | |
}, | |
"default_cache_type": "none", | |
"default_fill_cache": false, | |
"use_listings_cache": false | |
}, | |
"root_path": "Pangeo/pangeo-forge/aqua-modis-feedstock/{job_name}" | |
}, | |
"InputCacheStorage": { | |
"fsspec_class": "gcsfs.GCSFileSystem", | |
"root_path": "gs://pangeo-forge-prod-cache" | |
} | |
} | |
env: | |
GOOGLE_APPLICATION_CREDENTIALS: "${{ steps.auth.outputs.credentials_file_path }}" | |
EARTHDATA_USERNAME: cisaacstern | |
EARTHDATA_PASSWORD: "${{ secrets.EARTHDATA_PASSWORD }}" |