Set JATS4R_SCHEMATRONS_VERSION=0.0.13 #20
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: Build and Deploy to Cloud Run | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
env: | |
PROJECT_ID: ${{ secrets.RUN_PROJECT }} | |
RUN_REGION: us-east4 | |
SERVICE_NAME: jats-validator | |
jobs: | |
build-deploy: | |
name: Build and Deploy | |
runs-on: ubuntu-latest | |
permissions: | |
contents: 'read' | |
id-token: 'write' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- id: auth | |
name: Authenticate | |
uses: google-github-actions/auth@v1 | |
with: | |
workload_identity_provider: ${{ secrets.WORKLOAD_IDENTITY_PROVIDER }} | |
service_account: ${{ secrets.SERVICE_ACCOUNT }} | |
# Setup gcloud CLI | |
- uses: google-github-actions/setup-gcloud@v1 | |
with: | |
version: '>= 363.0.0' | |
# Build and push image to Google Container Registry | |
- name: Build | |
run: |- | |
gcloud builds submit \ | |
--quiet \ | |
--tag "gcr.io/$PROJECT_ID/$SERVICE_NAME:$GITHUB_SHA" | |
# Deploy image to Cloud Run | |
- name: Deploy | |
run: |- | |
gcloud run deploy "$SERVICE_NAME" \ | |
--quiet \ | |
--region "$RUN_REGION" \ | |
--image "gcr.io/$PROJECT_ID/$SERVICE_NAME:$GITHUB_SHA" \ | |
--platform "managed" \ | |
--allow-unauthenticated |