Skip to content

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

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

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

Workflow file for this run

# This workflow will install Python dependencies and build the project
name: Build Release Version
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
python-version: [3.7]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build
run: python ./build-release.py
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2
with:
name: ${{matrix.os}}
path: dist/*.zip