Skip to content

[B] Removes auth logs and renames auth endpoint #89

[B] Removes auth logs and renames auth endpoint

[B] Removes auth logs and renames auth endpoint #89

Workflow file for this run

name: 'Deploy to Int'
on:
push:
branches:
- 'master'
jobs:
build-push-deploy:
name: 'Build and Deploy to Integration'
runs-on: ubuntu-latest
# Checkout the repository to the GitHub Actions runner
steps:
- name: Checkout
uses: actions/checkout@v2
# gcloud CLI setup
- name: Login to GCP
uses: google-github-actions/setup-gcloud@v0
with:
service_account_key: ${{ secrets.SKYVIEWER_INT_SERVICE_ACCOUNT }}
project_id: edc-int-6c5e
export_default_credentials: true
- name: Build Container Image
run: |-
docker build \
-t "gcr.io/edc-int-6c5e/skyviewer-client:${{ github.sha }}" \
--build-arg NEXT_PUBLIC_API_URL=https://api-int.rubinobs.dev/api \
--build-arg NEXT_PUBLIC_BASE_URL=https://int.rubinobs.dev \
--build-arg EDC_LOGGER_API_URL=https://us-central1-skyviewer.cloudfunctions.net/edc-logger \
--build-arg NEXT_PUBLIC_DEBUG_LOGGING=false \
--build-arg CLOUD_ENV=INT \
--build-arg NEXT_PUBLIC_GOOGLE_APP_ID=422617727806-q7opitpsisom3fekpplsh8b77s0oe6n2.apps.googleusercontent.com \
--build-arg GOOGLE_APP_SECRET=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 \
--build-arg NEXT_PUBLIC_CONTACT_FORM_POST_URL=https://api-int.rubinobs.dev/actions/contact-form/send \
--build-arg NEXT_PUBLIC_PLAUSIBLE_DOMAIN= \
--build-arg NEXT_PREVIEW_SLUG=preview-in-craft-cms \
--build-arg NEXT_PUBLIC_EFD_URL=https://hasura-e3g4rcii3q-uc.a.run.app/v1/graphql \
--build-arg NEXT_PUBLIC_HASURA_SECRET=_qfq_tMbyR4brJ@KHCzuJRU7 \
--build-arg NEXT_PUBLIC_RELEASE_URL=`https://noirlab.edu/public/api/v2/releases/{{ID}}/?lang={{SITE}}&translation_mode=fallback` \
.
- name: Configure Docker Auth
run: gcloud --quiet auth configure-docker
- name: Push Container Image to GCR
run: docker push gcr.io/edc-int-6c5e/skyviewer-client:${{ github.sha }}
- name: Get app.yaml
run: gcloud secrets versions access latest --secret=rubin-obs-client-appyaml > app.yaml
- name: Deploy to App Engine
run: |-
gcloud app deploy app.yaml \
--image-url=gcr.io/edc-int-6c5e/skyviewer-client:${{ github.sha }} \
--promote \
--project=edc-int-6c5e