Merge pull request #187 from apollographql/fix-playlist-images #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish spotify schema | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'subgraphs/spotify/**' | |
- '.github/workflows/spotify_publish.yaml' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
publish_spotify_schema: | |
name: Publish Spotify schema to GraphOS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 $APOLLO_GRAPH_REF --schema ./subgraphs/spotify/schema.graphql --name spotify | |
env: | |
APOLLO_KEY: ${{ secrets.APOLLO_KEY }} | |
APOLLO_VCS_COMMIT: ${{ github.event.pull_request.head.sha }} | |
APOLLO_GRAPH_REF: ${{ secrets.APOLLO_GRAPH_REF }} |