Update build-freebsd-package.yml #19
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 Executable for WebSSH | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout WebSSH repository | |
uses: actions/checkout@v2 | |
with: | |
repository: 'huashengdun/webssh' | |
path: 'webssh' | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
cd webssh | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install pyinstaller | |
- name: Build executable using PyInstaller | |
run: | | |
pyinstaller --onefile webssh/__main__.py --name webssh | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: webssh-linux | |
path: webssh/dist/webssh |