Skip to content

Pull EdgeFunction

Pull EdgeFunction #2

Workflow file for this run

name: Pull EdgeFunction
on: workflow_dispatch
jobs:
pypi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install setuptools wheel twine
python3 -m pip install -r requirements.txt
- name: Pull EdgeFunction
run: python3 edgefxn.py
- name: Show Packages
run: |
ls -a
ls -a fxn
ls -a fxn/libs
ls -a fxn/libs/macos
- name: Build
run: python3 setup.py sdist bdist_wheel
- uses: actions/upload-artifact@v4
with:
name: Package
path: dist/fxn-0.0.32.tar.gz