From 0f91709741ec455982c622542d71080ef186412c Mon Sep 17 00:00:00 2001 From: Ircama Date: Tue, 30 Jul 2024 01:26:15 +0200 Subject: [PATCH] Revised build file --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 65884cb..24bdf66 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,22 +11,25 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Install Python uses: actions/setup-python@v5 with: python-version: '3.11' architecture: 'x64' + - name: Install requirements run: | pip install --upgrade pip pip install git+https://github.com/pyinstaller/pyinstaller@develop pip install -r requirements.txt + - name: Run PyInstaller run: | python -m PyInstaller epson_print_conf.spec -- --default - name: Generate Changelog - run: echo "Note: the executable file in the assets below is auto-generated by a GitHub Action." > ${{ github.workspace }}-CHANGELOG.txt + run: echo "The executable file in the assets below is auto-generated by a GitHub Action." > ${{ github.workspace }}-CHANGELOG.txt - name: Create Release uses: softprops/action-gh-release@v2