DAM plugin installed but not enabled + ImageGrid content block + composer updates #114
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: 'PR Preview to Int' | |
on: | |
pull_request: | |
types: | |
- 'opened' | |
- 'synchronize' | |
- 'reopened' | |
- 'closed' | |
branches: | |
- 'master' | |
jobs: | |
build-push-deploy: | |
name: 'Build and Deploy PR Preview to Integration' | |
runs-on: ubuntu-latest | |
if: ${{ (github.event.action != 'closed') && (startsWith(github.head_ref, 'preview') == true) }} | |
# 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: Get app.yaml | |
run: gcloud secrets versions access latest --secret=rubin-obs-api-appyaml > app.yaml | |
- name: Format version name | |
id: version_name | |
run: echo "version_name=$(echo \"${{ github.head_ref }}\" | tr -cd '[:alnum:]' | tr '[:upper:]' '[:lower:]')" >> $GITHUB_ENV | |
- name: Deploy to App Engine | |
env: | |
BRANCH_NAME: ${{ env.version_name }} | |
run: | | |
gcloud app deploy app.yaml \ | |
--no-promote \ | |
--version=${BRANCH_NAME,,} | |
# Create or update a comment with the URL | |
- name: Find Comment | |
uses: peter-evans/find-comment@v1 | |
id: fc | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
comment-author: 'github-actions[bot]' | |
body-includes: A preview of this PR | |
- name: Create or update a comment with the URL to the PR | |
uses: peter-evans/create-or-update-comment@v1 | |
with: | |
comment-id: ${{ steps.fc.outputs.comment-id }} | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
A preview of this PR will be available at https://${{ github.head_ref }}-dot-rubin-obs-api-int-dot-edc-int-6c5e.uc.r.appspot.com/ until the request is closed. :sparkles: | |
reactions: '+1' | |
edit-mode: replace | |
cleanup: | |
name: 'Cleanup PR Preview' | |
runs-on: ubuntu-latest | |
if: ${{ (github.event.action == 'closed') && (startsWith(github.head_ref, 'preview') == true) }} | |
# 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 | |
# Destruct! | |
- name: Destroy version | |
env: | |
BRANCH_NAME: ${{ env.version_name }} | |
run: gcloud app versions delete ${BRANCH_NAME,,} --service=rubin-obs-api |