Skip to content

Commit

Permalink
refactor: Update build workflow to include separate specifications fo…
Browse files Browse the repository at this point in the history
…r Windows and Linux builds and improve artifact upload process
  • Loading branch information
alevilar committed Sep 12, 2024
1 parent 3bfaf4d commit f756838
Showing 1 changed file with 0 additions and 127 deletions.
127 changes: 0 additions & 127 deletions .github/workflows/desktop.build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,133 +3,6 @@ name: Build Desktop Ejecutables - on Release
on: push

jobs:
build-windows:
if: ${{ github.ref != 'refs/heads/main' }}
runs-on: windows-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12.4'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
- name: Install escpos all modules includes win32 printing module if windows SO
run: |
pip install 'python-escpos[all]'
- name: Install socketio client
run: |
pip install 'python-socketio[client]'
- name: Install project dependencies
run: |
pip install -r requirements.cli.txt
- name: Build windows executable
run: pyinstaller fiscalberry-win.spec

- name: Upload executable
uses: actions/upload-artifact@v4
with:
name: fiscalberry-win
path: dist/fiscalberry-win.exe

build-linux:
if: ${{ github.ref != 'refs/heads/main' }}
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12.4'

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
- name: Install escpos all modules includes win32 printing module if windows SO
run: |
sudo apt-get install libcups2-dev
pip install 'python-escpos[all]'
- name: Install socketio client
run: |
pip install 'python-socketio[client]'
- name: Install project dependencies
run: |
pip install -r requirements.cli.txt
- name: Build executable
run: pyinstaller fiscalberry-lin.spec

- name: List dist directory (debugging)
run: ls -la dist

- name: Upload executable
uses: actions/upload-artifact@v4
with:
name: fiscalberry-lin
path: dist/fiscalberry-lin

gather-artifacts:
if: ${{ github.ref != 'refs/heads/main' }}
runs-on: ubuntu-latest
needs: [build-windows, build-linux]

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Download Windows artifact
uses: actions/download-artifact@v4
with:
name: fiscalberry-win
path: ./artifacts

- name: Download Linux artifact
uses: actions/download-artifact@v4
with:
name: fiscalberry-lin
path: ./artifacts

- name: List artifacts directory (debugging)
run: ls -la ./artifacts

- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

- name: Set upload URL
run: echo "UPLOAD_URL=${{ steps.create_release.outputs.upload_url }}" >> $GITHUB_ENV

- name: Upload Windows executable to release
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ env.UPLOAD_URL }}
asset_path: ./artifacts/fiscalberry-win.exe
build-windows:
runs-on: windows-latest

Expand Down

0 comments on commit f756838

Please sign in to comment.