Skip to content

Commit

Permalink
fix: renamed backend to frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
FeroxFoxxo authored Aug 3, 2024
1 parent 7beedac commit 8dc17d4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Build backend
- name: Build frontend
run: |
docker build -t ghcr.io/exceptionhandlersuoa/backend:latest .
docker build -t ghcr.io/exceptionhandlersuoa/frontend:latest .
- name: Push backend
- name: Push frontend
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ExceptionHandlersUOA --password-stdin
docker push ghcr.io/exceptionhandlersuoa/backend:latest
docker push ghcr.io/exceptionhandlersuoa/frontend:latest
- name: Send discord notification
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
uses: Ilshidur/action-discord@master
with:
args: "🚀 Published 🚀"
args: "🚀 Published Frontend 🚀"

0 comments on commit 8dc17d4

Please sign in to comment.