Merge pull request #23 from Sneccello/privacy-pii_leakage-emails #51
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: Build and publish the LVE website | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Fresh Virtual Environment | |
run: | | |
pip install --upgrade pip | |
python3.10 -m venv env | |
export PATH=$PATH:/home/docker/.local/bin | |
source env/bin/activate | |
echo "VIRTUAL ENV:" $VIRTUAL_ENV | |
- name: Install Packaging Dependencies | |
run: | | |
pip install -e 'lve-tools[web]' | |
- name: Build lve-tools/web/ | |
run: cd lve-tools/web && PYTHONPATH=../lve-tools/lve_tools python3 make.py | |
- name: Deploy | |
uses: s0/git-publish-subdir-action@develop | |
env: | |
REPO: self | |
BRANCH: web | |
FOLDER: lve-tools/web/build | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |