Skip to content

#22 added the graph endpoint (#32) #19

#22 added the graph endpoint (#32)

#22 added the graph endpoint (#32) #19

Workflow file for this run

name: Staging Docker Image
on:
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Log in to Docker Hub
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- name: Build the Docker image
run: docker build . --file Dockerfile --tag ouslan/jp-api:stage
- name: Push the Docker image
run: docker push ouslan/jp-api:stage