fix(#2575): Stop cash flow card labels from getting cutting off if bar height is too low #1339
Workflow file for this run
This file contains 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
name: Electron | |
defaults: | |
run: | |
shell: bash | |
env: | |
CI: true | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- if: ${{ startsWith(matrix.os, 'windows') }} | |
run: pip.exe install setuptools | |
- if: ${{ ! startsWith(matrix.os, 'windows') }} | |
run: python3 -m pip install setuptools | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
- name: Build Electron | |
run: ./bin/package-electron | |
- name: Upload Build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: actual-electron-${{ matrix.os }} | |
path: | | |
packages/desktop-electron/dist/*.dmg | |
packages/desktop-electron/dist/*.exe | |
packages/desktop-electron/dist/*.AppImage |