Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit 8a424eb

Browse files
authoredMar 14, 2023
Release CI: apt-get update before installing libsystemd-dev (#133)
1 parent 4fa5f37 commit 8a424eb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎.github/workflows/release.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ jobs:
4949
go mod download
5050
5151
- name: Install libsystemd-dev
52-
run: sudo apt-get install -y libsystemd-dev gcc-aarch64-linux-gnu
52+
run: |
53+
sudo apt-get update
54+
sudo apt-get install -y libsystemd-dev gcc-aarch64-linux-gnu
5355
5456
- name: Build binaries for Linux
5557
if: success()

0 commit comments

Comments
 (0)
This repository has been archived.