Merge pull request #3101 from responsible-ai-collaborative/main #319
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: Realm Deploy to Empty Environment | |
on: | |
push: | |
branches: | |
- staging | |
workflow_dispatch: | |
jobs: | |
push: | |
runs-on: ubuntu-latest | |
environment: empty | |
steps: | |
- uses: actions/checkout@v2 | |
- name: "Install the Realm CLI" | |
run: | | |
npm install -g mongodb-realm-cli | |
- name: Login | |
run: | | |
realm-cli login --api-key="${{ secrets.REALM_API_PUBLIC_KEY }}" --private-api-key="${{ secrets.REALM_API_PRIVATE_KEY }}" --realm-url https://services.cloud.mongodb.com --atlas-url https://cloud.mongodb.com | |
- name: Push | |
run: | | |
cd site/realm | |
realm-cli push --remote="${{ secrets.GATSBY_REALM_APP_ID }}" -y | |