feat(ui): add SVG icons, responsive mobile/desktop layout, CSS animat… #3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # .github/workflows/tag-release.yml | ||
| name: Tag Release Build | ||
| on: | ||
| push: | ||
| tags: | ||
| - 'v*' # tags like v1.0.0 | ||
| jobs: | ||
| build: | ||
| runs-on: ${{ matrix.os }} | ||
| strategy: | ||
| matrix: | ||
| os: [ubuntu-latest, windows-latest] | ||
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 | ||
| - name: Set up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: "3.13" | ||
| - name: Install build dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip setuptools wheel build | ||
| pip install pyinstaller | ||
| # Install GUI-specific dependencies | ||
| pip install pyqt6 httpx | ||
| - name: Build wheel (Linux) or exe (Windows) | ||
| if: matrix.os == 'ubuntu-latest' | ||
| run: | | ||
| python -m build | ||
| - name: Build Windows executable | ||
| if: matrix.os == 'windows-latest' | ||
| run: | | ||
| pyinstaller --onefile owlbearag/cli.py --name owlbearag.exe | ||
| - name: Build Linux GUI executable | ||
| if: matrix.os == 'ubuntu-latest' | ||
| run: | | ||
| pyinstaller --onefile llama_node/gui_client.py --name owlbearag_gui | ||
| - name: Build Windows GUI executable | ||
| if: matrix.os == 'windows-latest' | ||
| run: | | ||
| pyinstaller --onefile llama_node/gui_client.py --name owlbearag_gui.exe | ||
| - name: Upload artifacts for release | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: ${{ matrix.os }}-artifacts | ||
| path: | | ||
| dist/*.whl | ||
| dist/*.tar.gz | ||
| dist/owlbearag.exe | ||
| dist/owlbearag_gui | ||
| dist/owlbearag_gui.exe | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: ${{ matrix.os }}-artifacts | ||
| path: | | ||
| dist/*.whl | ||
| dist/*.tar.gz | ||
| dist/owlbearag.exe | ||
| publish-release: | ||
| needs: build | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Download all artifacts | ||
| uses: actions/download-artifact@v8 | ||
| with: | ||
| path: ./artifacts | ||
| - name: Create GitHub Release | ||
| uses: softprops/action-gh-release@v2 | ||
| with: | ||
| tag_name: ${{ github.ref_name }} | ||
| name: Release ${{ github.ref_name }} | ||
| draft: false | ||
| prerelease: false | ||
| files: ./artifacts/** | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||