Skip to content

Commit

Permalink
Fix bug with docker-compose on the CD workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
RafaelLyra8 committed Aug 21, 2024
1 parent e3524fa commit 7c9894a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@master

- name: Build Docker Compose 🏗️
run: docker-compose build
run: docker compose build

- name: Login to GitHub Container Registry 🔓
uses: docker/login-action@v2
Expand All @@ -25,7 +25,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push Docker Compose 🪖
run: docker-compose push
run: docker compose push

# - name: Create Github Release
# uses: actions/create-release@v1
Expand Down

0 comments on commit 7c9894a

Please sign in to comment.