Skip to content

Update issue templates #10

Update issue templates

Update issue templates #10

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
backend-build:
runs-on: ubuntu-latest
steps:
- name: Checkout backend code
uses: actions/checkout@v3
- name: Build the Docker image for backend
run: docker build ./backend -t backend-image-name:$(date +%s)
frontend-build:
runs-on: ubuntu-latest
steps:
- name: Checkout frontend code
uses: actions/checkout@v3
- name: Build the Docker image for frontend
run: docker build ./frontend -t frontend-image-name:$(date +%s)