Skip to content

Make sure name is actually edited #71

Make sure name is actually edited

Make sure name is actually edited #71

name: Package Application - Ubuntu
on:
workflow_dispatch:
push:
jobs:
linux-build:
name: build Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Git checkout
uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: git
run: |
# setup the username and email. I tend to use 'GitHub Actions Bot' with no email by default
git --version
git config user.name "GitHub Actions Bot"
git config user.email "<>"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
pip install -r requirements.txt
- name: pyinstaller build
run: |
python build.py
- name: Move files
run: |
mv ./dist ./wme-Ubuntu
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: "wme-ubuntu-2.3.4 - ${{github.run_number}}"
path: wme-Ubuntu