Skip to content

wip

wip #1

Workflow file for this run

name: Build
on:
push:
branches:
- '*'
pull_request:
jobs:
build:
name: Build

Check failure on line 11 in .github/workflows/compile_exe.yml

View workflow run for this annotation

GitHub Actions / Build

Invalid workflow file

The workflow is not valid. .github/workflows/compile_exe.yml (Line: 11, Col: 5): Required property is missing: runs-on
concurrency:
group: uk-controller-pack-build-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Dependencies
run: pip install pyinstaller
`pip install pyinstaller` then `pyinstaller --onefile LogonDetails.py`
- name: Run Python script
env:
REMOTE_KEY: ${{ secrets.GITHUB_TOKEN }}
run: pyinstaller --onefile ./UK/LogonDetails.py
# Upload artifacts
- name: Upload Executable As Artifact
uses: actions/upload-artifact@v2
with:
name: "Logon Details.exe"
path: ".\\UK\\LogonDetails.exe"