Skip to content

Merge pull request #52 from aeimer/post/getting-started-cwyd-rag #221

Merge pull request #52 from aeimer/post/getting-started-cwyd-rag

Merge pull request #52 from aeimer/post/getting-started-cwyd-rag #221

Workflow file for this run

name: CI
on: push
env:
PROJECT_ID: ${{ secrets.RUN_PROJECT }}
RUN_REGION: europe-west3
PROJECT_BASE_URL: https://qawareblog-2ixogl4y4q-ey.a.run.app/
DOCKER_GAR_NAME: qaware-blog-docker
SERVICE_NAME: qawareblog
jobs:
deploy:
runs-on: ubuntu-22.04
steps:
- name: Git checkout
uses: actions/[email protected]
with:
submodules: true
- name: Setup composed environment variables
run: |
echo "DOCKER_IMAGE_PATH=${RUN_REGION}-docker.pkg.dev/${PROJECT_ID}/${DOCKER_GAR_NAME}/${SERVICE_NAME}:${GITHUB_SHA}" >> $GITHUB_ENV
echo "DOCKER_REGISTRY_BASE_URL=${RUN_REGION}-docker.pkg.dev" >> $GITHUB_ENV
- name: Setup hugo
uses: peaceiris/[email protected]
with:
hugo-version: "0.136.5"
extended: true
- name: Build
# Uses --environment production by default
# Uses --source . by default
run: hugo
- name: Deploy
if: github.ref == 'refs/heads/master'
uses: peaceiris/[email protected]
with:
personal_token: ${{ secrets.TOKEN }}
external_repository: qaware/qaware.github.io
publish_dir: ./public
#keep_files: true
user_name: fuchshuber
user_email: [email protected]
publish_branch: master
cname: blog.qaware.de
# Setup gcloud CLI
- name: Setup Cloud Auth
uses: google-github-actions/[email protected]
with:
credentials_json: ${{ secrets.RUN_SA_KEY }}
- name: Set up Cloud SDK
uses: google-github-actions/[email protected]
with:
project_id: ${{ secrets.RUN_PROJECT }}
# Configure docker to use the gcloud command-line tool as a credential helper
- run: gcloud auth configure-docker $DOCKER_REGISTRY_BASE_URL
# Build the Docker image for staging environment
- name: Build
run: docker build --build-arg BASE_URL=$PROJECT_BASE_URL --tag $DOCKER_IMAGE_PATH .
# Push the Docker image to Google Artifact Registry
- name: Publish
run: docker push $DOCKER_IMAGE_PATH
# Deploy the Docker image to Google Cloud Run
- name: Deploy
run:
gcloud components install beta
&& gcloud beta run deploy $SERVICE_NAME
--quiet
--image $DOCKER_IMAGE_PATH
--project $PROJECT_ID
--region $RUN_REGION
--platform managed
--allow-unauthenticated