Fix build #20
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: Linux App Release | |
on: | |
push: | |
branches: | |
- ci/linux-app-* | |
tags: | |
- '*' | |
jobs: | |
linux-app-binary: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/[email protected] | |
- uses: cachix/install-nix-action@v22 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: npm | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.21.5' | |
- uses: vegardit/fast-apt-mirror.sh@v1 | |
- run: | | |
sudo apt-get install -y sqlite3 libgtk-3-dev libwebkit2gtk-4.0-dev build-essential pkg-config | |
npm install | |
npm run build | |
nix-build ledger.nix | |
cp ./result/bin/ledger internal/binary/ledger | |
cd desktop | |
go install github.com/wailsapp/wails/v2/cmd/wails@latest | |
wails doctor | |
wails build -tags webkit2_40 | |
cp build/bin/Paisa build/linux/usr/local/bin | |
cp -r build/linux paisa_0.7.0_amd64 | |
dpkg --build paisa_0.7.0_amd64 | |
cd .. | |
mv desktop/paisa_0.7.0_amd64.deb paisa-app-linux-amd64.deb | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: true | |
files: | | |
paisa-* | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |