Skip to content

chore(deps): update module github.com/vektah/gqlparser/v2 to v2.5.20 … #79

chore(deps): update module github.com/vektah/gqlparser/v2 to v2.5.20 …

chore(deps): update module github.com/vektah/gqlparser/v2 to v2.5.20 … #79

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.19'
- name: Build
run: go build
- name: Test
run: go test
deploy:
name: Deploy application
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Deploy
run: echo "::warning file=.github/workflows/deploy.yaml,line=31,endLine=32,title=No Deploy step defined::Define your custom workflow for deploying your subgraph here."
publish_schema:
name: Publish new schema to Apollo Studio
if: false
needs: [ deploy ]
env:
APOLLO_VCS_COMMIT: ${{ github.event.pull_request.head.sha }}
# rename this to a valid subgraph name
SUBGRAPH_NAME: foo-bar
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Rover
run: |
curl -sSL https://rover.apollo.dev/nix/latest | sh
echo "$HOME/.rover/bin" >> $GITHUB_PATH
- name: Publish Schema
run: rover subgraph publish ${{ secrets.APOLLO_GRAPH_REF }} --schema graph/schema.graphqls --name ${{ env.SUBGRAPH_NAME }} --routing-url ${{ secrets.PRODUCTION_URL }}
env:
APOLLO_KEY: ${{ secrets.APOLLO_KEY }}