Skip to content
This repository has been archived by the owner on Feb 11, 2024. It is now read-only.

Corrected api url

Corrected api url #294

Workflow file for this run

name: Docker Image CI
on:
workflow_dispatch:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image - frontend
run: docker build "Sprint 4/frontend" --tag docker.happyfir.com/misc/soen341:latest
- name: Deploy - frontend
run: docker push docker.happyfir.com/misc/soen341:latest
- name: Build the Docker image - backend
run: docker build "Sprint 4/backend" --tag docker.happyfir.com/misc/soen341-backend:latest
- name: Deploy - backend
run: docker push docker.happyfir.com/misc/soen341-backend:latest
- name: Webhook POST Action
uses: muinmomin/[email protected]
with:
# URL of webhook to send post request to
url: ${{ secrets.WEBHOOK_URL }}