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 772f0f7 commit 2199fd5Copy full SHA for 2199fd5
.github/workflows/main.yml
@@ -15,15 +15,17 @@ jobs:
15
# This workflow contains a single job called "build"
16
build:
17
# Build on the oldest supported ubuntu:
18
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-22.04
19
20
# Steps represent a sequence of tasks that will be executed as part of the job
21
steps:
22
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
23
- uses: actions/checkout@v2
24
25
- name: Install dependencies
26
- run: sudo apt install libgtk2.0-dev libprocps-dev
+ run: |
27
+ sudo apt update
28
+ sudo apt install libgtk2.0-dev libprocps-dev
29
30
- name: Build .deb package
31
run: make deb
0 commit comments