-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (38 loc) · 1.26 KB
/
main.yaml
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
name: Main Integration Test
on:
push:
workflow_dispatch: # Allow manual triggering of the workflow
jobs:
cbds:
with:
environment: cbds
endpoint: "https://idp.cbds.ohsu.edu"
# Self-hosted runner to access https://idp.cbds.ohsu.edu
# https://github.com/ACED-IDP/gen3_util/settings/actions/runners/21
# https://docs.github.com/en/actions/hosting-your-own-runners/managing-self-hosted-runners/adding-self-hosted-runners#adding-a-self-hosted-runner-to-a-repository
runs-on: self-hosted
program: cbds
secrets:
CREDENTIALS: ${{ secrets.CREDENTIALS }}
uses: ./.github/workflows/integration.yaml
production:
with:
environment: production
endpoint: "https://aced-idp.org"
secrets:
CREDENTIALS: ${{ secrets.CREDENTIALS }}
uses: ./.github/workflows/integration.yaml
staging:
with:
environment: staging
endpoint: "https://staging.aced-idp.org"
secrets:
CREDENTIALS: ${{ secrets.CREDENTIALS }}
uses: ./.github/workflows/integration.yaml
development:
with:
environment: development
endpoint: "https://development.aced-idp.org"
secrets:
CREDENTIALS: ${{ secrets.CREDENTIALS }}
uses: ./.github/workflows/integration.yaml