Skip to content

Update python-package-conda.yml #5

Update python-package-conda.yml

Update python-package-conda.yml #5

name: Deploy Streamlit App to GitHub Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Fetch GitHub IP addresses
id: fetch-ip
run: |
ip_data=$(curl -H "Accept: application/vnd.github.v3+json" https://api.github.com/meta)
echo "github_ips=$ip_data" >> $GITHUB_ENV
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run Streamlit
run: |
streamlit run Home.py &
sleep 10
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./public
- name: Display GitHub IP addresses
run: |
echo "GitHub IP addresses: ${{ env.github_ips }}"