Skip to content

Update build-freebsd-package.yml #20

Update build-freebsd-package.yml

Update build-freebsd-package.yml #20

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