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 daeab15 commit 5b1ae3aCopy full SHA for 5b1ae3a
.github/workflows/makefile.yml
@@ -14,6 +14,17 @@ jobs:
14
steps:
15
- uses: actions/checkout@v4
16
17
+ - name: Install docker-compose
18
+ run: |
19
+ sudo apt-get update
20
+ sudo apt-get install -y docker-compose
21
+
22
+ - name: Install Docker Compose plugin
23
24
+ mkdir -p ~/.docker/cli-plugins/
25
+ curl -SL https://github.com/docker/compose/releases/download/v2.29.2/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
26
+ chmod +x ~/.docker/cli-plugins/docker-compose
27
28
- name: build
29
run: cd src; make build
30
0 commit comments