Skip to content

Commit

Permalink
15
Browse files Browse the repository at this point in the history
  • Loading branch information
collinlucke committed Nov 27, 2024
1 parent 77aa3ba commit b2390de
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,18 @@ jobs:
shell: powershell
run: Start-Process -FilePath "powershell.exe" -ArgumentList "-Command ./verify-docker-login.ps1" -Verb RunAs

- name: Build Docker Images w/ Elevated Privileges
- name: Build Docker Images with Elevated Privileges
shell: powershell
run: Start-Process -FilePath "powershell.exe" -ArgumentList "-Command ./build-docker-image.ps1"

- name: Tag Docker Image with Elevated Privileges
shell: powershell
run: |
Start-Process -FilePath "docker" -ArgumentList "tag your-image-name:latest your-docker-username/your-image-name:latest" -Verb RunAs
Start-Process -FilePath "docker" -ArgumentList "tag baphomet-server:latest collinlucke/baphomet-server:latest" -Verb RunAs
- name: Push Docker Images
run: docker-compose -f docker-compose.yml push
- name: Push Docker Images with Elevated Privileges
shell: powershell
run: Start-Process -FilePath "powershell.exe" -ArgumentList "-Command docker-compose -f docker-compose.yml push" -Verb RunAs

deploy:
needs: build
Expand Down

0 comments on commit b2390de

Please sign in to comment.