We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05edd7f commit 5fd7864Copy full SHA for 5fd7864
.github/workflows/build.yml
@@ -59,11 +59,16 @@ jobs:
59
go-version: ${{ env.GO_VERSION }}
60
cache: true
61
-
62
- name: Install deps
+ name: Install deps (ubuntu)
63
if: startsWith(matrix.os, 'ubuntu-')
64
run: |
65
sudo apt-get update
66
sudo apt-get install -y dbus-x11 gnome-keyring libsecret-1-dev pass
67
+ -
68
+ name: Install deps (macOS)
69
+ if: startsWith(matrix.os, 'macOS-')
70
+ run: |
71
+ brew install pass
72
73
name: GPG conf
74
0 commit comments