Skip to content

Commit

Permalink
Fixed an issue where deploy configuration specified 'docker compose' …
Browse files Browse the repository at this point in the history
…tool instead of 'docker-compose'
  • Loading branch information
Petar-CV committed Nov 20, 2024
1 parent 4d7c38b commit bebe84f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ on:

jobs:
deploy:
name: Deploy Personal Blog
runs-on: self-hosted

steps:
- name: Checkout code
uses: actions/[email protected]

- name: Build and deploy compose file
run: |
docker compose down
docker compose up -d --build
docker-compose down
docker-compose up -d --build

0 comments on commit bebe84f

Please sign in to comment.