-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add ci caller workflow to graasp-deploy
- Loading branch information
1 parent
8f55b75
commit e4ec129
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: CI pipeline for Graasp auth | ||
|
||
# Controls when the action will run. | ||
on: | ||
# Triggers the workflow on push or pull request events but only for the main branch | ||
push: | ||
branches: | ||
- main | ||
|
||
pull_request: | ||
branches: [main] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
graasp-deploy-s3-workflow: | ||
name: Graasp Builder | ||
uses: graasp/graasp-deploy/.github/workflows/cintegration-s3.yml@6fb866ebf9c7369f4c324a3ba64e079ad54f2b49 | ||
with: | ||
build-folder: 'build' | ||
secrets: | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID_DEV }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY_DEV }} | ||
aws-region: ${{ secrets.AWS_REGION_DEV }} | ||
aws-s3-bucket-name: ${{ secrets.AWS_S3_BUCKET_NAME_GRAASP_COMPOSE_DEV }} | ||
cloudfront-distribution: ${{ secrets.CLOUDFRONT_DISTRIBUTION_GRAASP_COMPOSE_DEV }} | ||
api-host: ${{ secrets.REACT_APP_API_HOST_DEV }} | ||
show-notifications: true | ||
authentication-host: ${{ secrets.REACT_APP_AUTHENTICATION_HOST_DEV }} | ||
graasp-perform-host: ${{ secrets.REACT_APP_GRAASP_PERFORM_HOST_DEV }} | ||
graasp-analyzer-host: ${{ secrets.REACT_APP_GRAASP_ANALYZER_HOST_DEV }} | ||
ga-measurement-id: ${{ secrets.REACT_APP_GA_MEASUREMENT_ID_DEV }} | ||
hidden-item-tag-id: ${{ secrets.REACT_APP_HIDDEN_ITEM_TAG_ID_DEV }} | ||
|