Use true values of expense metrics in Dashboard #108
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 dashboard website | |
on: | |
push: | |
branches: [ mainline ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
- name: Install Apt packages | |
run: | | |
sudo apt-get install rsync | |
- name: Install Python packages | |
run: | | |
python -m pip install boto3 awscli | |
- name: Deploy Dashboard website to https://xgboost-ci.net | |
run: | | |
bash deploy_scripts/deploy_dashboard.sh | |
env: | |
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | |
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} |