Merge pull request #122 from snowex-hackweek/Splash-page-link #80
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 | |
on: | |
push: | |
paths: | |
- 'book/**' | |
- '{{ cookiecutter.repo_directory }}/**' | |
- 'scripts/**' | |
- '.github/workflows/deploy.yaml' | |
- '.github/actions/**' | |
- 'cookiecutter.yaml' | |
branches: | |
- main | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Configure NASA Earthdata Login | |
continue-on-error: true | |
env: | |
EARTHDATA_USER: ${{ secrets.EARTHDATA_USER}} | |
EARTHDATA_PASS: ${{ secrets.EARTHDATA_PASS }} | |
run: | | |
echo "machine urs.earthdata.nasa.gov login $EARTHDATA_USER password $EARTHDATA_PASS" > ~/.netrc | |
chmod 0600 ~/.netrc | |
- uses: ./.github/actions/buildresources | |
with: | |
jb-cache: true | |
publish-to-gh: true | |
jb-save: true | |
token: ${{ secrets.GH_PAT }} |