Skip to content

Commit

Permalink
Remove sudo from prod-workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
flynnc3 authored Apr 2, 2023
1 parent dd9c78a commit 5281d88
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/prod-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
- uses: actions/checkout@v3

- name: Stop Existing Images
run: sudo docker compose down
run: docker compose down

- name: Build
run: sudo docker compose build
run: docker compose build

- name: Push to Docker
run: sudo docker compose push
run: docker compose push

runDocker:
needs: buildDocker
Expand All @@ -34,7 +34,7 @@ jobs:

steps:
- name: Create Containers
run: sudo docker compose create
run: docker compose create

- name: Start services
run: sudo docker compose start
run: docker compose start

0 comments on commit 5281d88

Please sign in to comment.