Skip to content

Commit

Permalink
Re-add sudo to prod-workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
flynnc3 authored Apr 2, 2023
1 parent f8b2859 commit 1983afe
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: docker compose down
run: sudo docker compose down

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

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

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

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

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

0 comments on commit 1983afe

Please sign in to comment.