Skip to content

Commit

Permalink
chore: add build-essential to wails yaml linux deps
Browse files Browse the repository at this point in the history
  • Loading branch information
rolznz committed Feb 1, 2024
1 parent 428d358 commit e47d63b
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/wails.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ jobs:
strategy:
fail-fast: false
matrix:
build: [
{ name: nostr-wallet-connect, platform: linux/amd64, os: ubuntu-latest },
]
build:
[
{
name: nostr-wallet-connect,
platform: linux/amd64,
os: ubuntu-latest,
},
]
env:
REGISTRY: ghcr.io
IMAGENAME: ${{ github.event.repository.name }}
Expand All @@ -32,7 +37,7 @@ jobs:
run: go install github.com/wailsapp/wails/v2/cmd/wails@latest
shell: bash
- name: Install Linux Wails deps
run: sudo apt-get update && sudo apt-get install libgtk-3-0 libwebkit2gtk-4.0-dev gcc-aarch64-linux-gnu libgtk-3-dev nsis
run: sudo apt-get update && sudo apt-get install libgtk-3-0 libwebkit2gtk-4.0-dev gcc-aarch64-linux-gnu libgtk-3-dev nsis build-essential
shell: bash
- name: Wails Doctor
working-directory: .
Expand All @@ -50,9 +55,10 @@ jobs:
path: |
*/bin/
*\bin\*
# - uses: dAppServer/wails-build-action@v2.2
# with:
# build-name: ${{ matrix.build.name }}
# build-platform: ${{ matrix.build.platform }}
# package: false
# go-version: '1.21'
# go-version: '1.21'

0 comments on commit e47d63b

Please sign in to comment.