Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

remove the run code

remove the run code #5

on:
push:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['windows-latest', 'ubuntu-latest', 'macos-latest']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.11
- run: pip install -r requirements.txt pyinstaller
- run: pyinstaller tinet-bridge.py
- uses: actions/upload-artifact@v2
with:
path: dist/*