Skip to content

Commit

Permalink
feat: add ci caller workflow to graasp-deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
victorggonzalez committed May 3, 2022
1 parent 85effa7 commit 624d5c4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/cintegration-s3-caller.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI pipeline for Graasp perform

# 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 Player
uses: graasp/graasp-deploy/.github/workflows/cintegration-s3.yml@main
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_PERFORM_DEV }}
cloudfront-distribution: ${{ secrets.CLOUDFRONT_DISTRIBUTION_GRAASP_PERFORM_DEV }}
api-host: ${{ secrets.REACT_APP_API_HOST_DEV }}
port: ${{ secrets.PORT }}
show-notifications: true
authentication-host: ${{ secrets.REACT_APP_AUTHENTICATION_HOST_DEV }}
graasp-compose-host: ${{ secrets.REACT_APP_GRAASP_COMPOSE_HOST_DEV }}

0 comments on commit 624d5c4

Please sign in to comment.