-
Notifications
You must be signed in to change notification settings - Fork 5
66 lines (56 loc) · 2.61 KB
/
apollo.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# .github/workflows/check.yml
name: Apollo
# Controls when the action will run. Triggers the workflow on push request events
on: [push]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
check:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# https://docs.github.com/en/actions/reference/environments
environment: apollo
# https://docs.github.com/en/actions/reference/encrypted-secrets
# https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idstepsenv
env:
APOLLO_KEY: ${{ secrets.APOLLO_KEY }}
APOLLO_VCS_COMMIT: ${{ github.sha }}
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Install Rover
run: |
curl -sSL https://rover.apollo.dev/nix/v0.26.1 | sh
# Add Rover to the $GITHUB_PATH so it can be used in another step
# https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#adding-a-system-path
echo "$HOME/.rover/bin" >> $GITHUB_PATH
# TBD: only run this command with the `--background` flag once we have the Apollo Studio GitHub integration enabled on your repository
- name: Run destinations subgraph check
run: |
rover subgraph check O11Y-Workshop-0@current --schema ./subgraphs/destinations/schema.graphql --name destinations --background
- name: Run experiences subgraph check
run: |
rover subgraph check O11Y-Workshop-0@current --schema ./subgraphs/experiences/schema.graphql --name experiences --background
publish:
needs: check
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
environment: apollo
env:
APOLLO_KEY: ${{ secrets.APOLLO_KEY }}
APOLLO_VCS_COMMIT: ${{ github.sha }}
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Install Rover
run: |
curl -sSL https://rover.apollo.dev/nix/v0.26.1 | sh
# Add Rover to the $GITHUB_PATH so it can be used in another step
# https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#adding-a-system-path
echo "$HOME/.rover/bin" >> $GITHUB_PATH
- name: Publish destinations subgraph
run: |
./publish-destinations-current.sh
- name: Publish experiences subgraph
run: |
./publish-experiences-current.sh