Skip to content

Commit 5de15f8

Browse files
committed
Install required packages for build workflow
1 parent b71793e commit 5de15f8

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

Diff for: .github/workflows/build.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@ on: [pull_request]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-18.04
88
steps:
99
- uses: actions/checkout@v3
10-
- name: Set up Go
11-
uses: actions/setup-go@v3
10+
- run: |
11+
sudo apt update
12+
sudo apt remove --yes libappindicator3-dev
13+
sudo apt install --yes build-essential ruby ruby-dev rubygems libgtk-3-dev libayatana-appindicator3-dev
14+
#sudo gem install --no-document fpm -v 1.13.1
15+
- uses: actions/setup-go@v3
1216
with:
1317
go-version: '^1.19'
1418
- name: Test and Build

0 commit comments

Comments
 (0)