Merge pull request #36 from fLotte-meets-HWR-DB/dev

Dev
main
leonnicolas 4 years ago committed by GitHub
commit 8eacde9c85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,7 +3,7 @@ name: Build Docker Image
on: on:
push: push:
branches: [ main, dev ] branches: [ main ]
workflow_dispatch: workflow_dispatch:
jobs: jobs:
@ -14,6 +14,9 @@ jobs:
- name: Copy Repo Files - name: Copy Repo Files
uses: actions/checkout@v2 uses: actions/checkout@v2
- id: sha
run: echo "::set-output name=sha::$(git describe --always --tags --dirty)"
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v1 uses: docker/setup-qemu-action@v1
@ -32,6 +35,6 @@ jobs:
with: with:
context: . context: .
file: ./Dockerfile file: ./Dockerfile
platforms: linux/amd64 platforms: linux/arm64, linux/arm, linux/amd64
push: true push: true
tags: flotte-docker-registry.spdns.org/apollo-server:latest tags: flotte-docker-registry.spdns.org/apollo-server:latest, flotte-docker-registry.spdns.org/apollo-server:${{ steps.sha.outputs.sha }}

@ -3,11 +3,7 @@
name: Node.js CI name: Node.js CI
on: on: [push, pull_request]
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs: jobs:
build: build:

@ -315,7 +315,7 @@ export class ParticipantAPI extends DataSource {
throw new UserInputError('Participant ist not active in the specified dateRange'); throw new UserInputError('Participant ist not active in the specified dateRange');
} }
} else if (engagement.dateRange || engagement.dateRange) { } else if (engagement.dateRange || engagement.dateRange) {
throw new UserInputError('Please specify participantId adn the dateRange'); throw new UserInputError('Please specify participantId and the dateRange');
} }
await entityManager.getRepository(Engagement) await entityManager.getRepository(Engagement)
.createQueryBuilder('engagement') .createQueryBuilder('engagement')

Loading…
Cancel
Save