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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |