Skip to content

Commit ff8bff1

Browse files
committed
Update build.yaml
1 parent 919ca05 commit ff8bff1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/build.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,17 @@ jobs:
1818
- uses: actions/checkout@v2
1919
- name: Set commit SHA
2020
run: echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> $GITHUB_ENV
21+
- name: Install Docker using Docker's official script
22+
run: |
23+
curl -fsSL https://get.docker.com -o get-docker.sh
24+
sudo sh get-docker.sh
25+
continue-on-error: false
26+
- name: Install Docker Compose
27+
run: |
28+
sudo curl -L "https://github.com/docker/compose/releases/download/v2.3.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
29+
sudo chmod +x /usr/local/bin/docker-compose
30+
docker-compose --version
31+
continue-on-error: false
2132
- name: Build the stack
2233
run: docker-compose -f docker-compose.build.yml -env example.env build
2334

0 commit comments

Comments
 (0)