bump latest nba results #247
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 to Netlify' | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
name: 'Deploy' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@master | |
with: | |
python-version: '3.11' | |
- name: python basics | |
run: make build | |
- name: build pipeline | |
run: make run | |
- name: evidence install & build | |
run: | | |
make evidence-build | |
- name: copy output to working directory | |
run: | | |
mkdir -p /home/runner/work/_temp/_github_home/build | |
cp -r evidence/build/* /home/runner/work/_temp/_github_home/build | |
- name: Deploy Netlify | |
uses: danakim/gh-action-deploy-netlify@master | |
with: | |
AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | |
SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | |
DEPLOY_PROD: true |