Skip to content

Commit

Permalink
BUGFIX: Complied with the new specification of GitHub Actions; added …
Browse files Browse the repository at this point in the history
…an explicit installation of docker-compose
  • Loading branch information
hamukazu committed Aug 13, 2024
1 parent 6e0708e commit b9cb3b5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/actions-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ jobs:
- name: buildx
if: success()
uses: docker/setup-buildx-action@v1
- name: install docker-compose
if: success()
run: |
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
- name: build
if: success()
run: docker-compose build
Expand Down

0 comments on commit b9cb3b5

Please sign in to comment.