Skip to content

add new instance type #117

add new instance type

add new instance type #117

name: Deploy dashboard website
on:
push:
branches: [ mainline ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- 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 }}