Skip to content

Add retry when subgraph parse fails #44

Add retry when subgraph parse fails

Add retry when subgraph parse fails #44

Workflow file for this run

name: Build and Push Docker Image
on:
push:
branches:
- main # Replace with your branch name
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and Push Docker Image
run: |
docker build -t crocswap/graphcache-go:latest .
docker push crocswap/graphcache-go:latest