Skip to content

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #80

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #80

Workflow file for this run

name: Development Build
on:
push:
pull_request:
jobs:
build:
name: Development Build
strategy:
matrix:
include:
- os: ubuntu-20.04
dist: linux
- os: macos-11
dist: macos
- os: windows-2019
dist: windows
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
ref: gui
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install -r requirements-dev.txt
- name: Build standalone app
run: |
python scripts/build.py
- name: Upload distributive
uses: actions/upload-artifact@v3
with:
name: ustvgo-iptv-dev-${{ matrix.dist }}
path: |
dist/ustvgo-iptv
dist/ustvgo-iptv.exe
retention-days: 30