diff --git a/.github/workflows/python-package-conda.yml b/.github/workflows/python-package-conda.yml index 727a01f..adb5343 100644 --- a/.github/workflows/python-package-conda.yml +++ b/.github/workflows/python-package-conda.yml @@ -6,20 +6,30 @@ on: - main jobs: - deploy: + build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout code + uses: actions/checkout@v2 + - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: '3.9' + - name: Install dependencies run: | + python -m pip install --upgrade pip pip install -r requirements.txt + + - name: Run Streamlit + run: | + streamlit run streamlit_app.py & + sleep 10 + - name: Deploy to GitHub Pages - uses: crazy-max/ghaction-github-pages@v2 + uses: peaceiris/actions-gh-pages@v3 with: - target_branch: gh-pages - build_dir: . + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: ./public