diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index ddac938..ffbb311 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -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 🚀"