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

Merge pull request #1 from RiiConnect24/sourcery/master #2

Merge pull request #1 from RiiConnect24/sourcery/master

Merge pull request #1 from RiiConnect24/sourcery/master #2

Workflow file for this run

name: Build
on:
push:
branches:
- master
jobs:
Build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macOS-latest]
steps:
- name: Obtain latest version of the repository
uses: actions/checkout@v1
- name: Set up Python 3
uses: actions/setup-python@v1
with:
python-version: '3.7'
- name: Install requirements with PIP
run: pip install -r requirements.txt
- name: Install pyinstaller
run: pip install pyinstaller
- name: Build wc24decrypt
run: pyinstaller wc24decrypt.spec
- name: Build wc24encrypt
run: pyinstaller wc24encrypt.spec
- name: Publish Build Artifacts
uses: actions/upload-artifact@master
with:
name: ${{ matrix.os }}
path: dist