Skip to content

refactor(api): unify return type for search results (#115) #284

refactor(api): unify return type for search results (#115)

refactor(api): unify return type for search results (#115) #284

Workflow file for this run

name: Image Build
on:
push:
branches: ["dev"]
pull_request:
branches: ["dev"]
jobs:
build-api:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: |
cd api
docker build --build-arg DATABASE_URL=postgres://test --tag cinesync-api:$(date +%s) .
build-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: |
cd web
echo "API_HOST=http://localhost:4000" > .env
echo "PUBLIC_API_HOST=http://localhost:4000" >> .env
echo "TMDB_TOKEN=tmdbtoken_" >> .env
docker build --tag cinesync-web:$(date +%s) .