Skip to content

Attempt fixing the GitHub Actions configuration #4

Attempt fixing the GitHub Actions configuration

Attempt fixing the GitHub Actions configuration #4

Workflow file for this run

---
name: "expedite"
on: ["push"]
jobs:
ci-build:
runs-on: "windows-latest"
strategy:
fail-fast: false
steps:
- uses: "actions/checkout@v4"

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

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
- name: "Setup a functioning local Python 3 installation"
uses: "actions/setup-python@v5"
with:
python-version: "3.12"
- name: "Install the base dependencies"
run: "python3 -m pip3 install --upgrade poetry pyinstaller"
- name: "Install the project dependencies"
run: "python3 -m poetry install"
- name: "Build the project binary"
run: "python3 -m pyinstaller expedite/client/bridge/main.py --clean --onefile --name 'ed-bridge-${{ github.sha }}' --windowed --icon assets/icon/expedite.ico"
- uses: "actions/upload-artifact@v4"
with:
path: "dist/*"