Skip to content

feat(lecture-08): finish container introduction slides #69

feat(lecture-08): finish container introduction slides

feat(lecture-08): finish container introduction slides #69

Workflow file for this run

name: Deploy lecture slides
on:
push:
branches:
- master
env:
GHCR_IMAGE: ghcr.io/${{ vars.ORGANIZATION }}/${{ vars.IMAGE_NAME }}
GAR_IMAGE: ${{ vars.GAR_REGION }}-docker.pkg.dev/${{ vars.GCP_PROJECT }}/${{ vars.GAR_REPOSITORY }}/${{ vars.IMAGE_NAME}}
jobs:
deploy:
name: "Deploy"
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the GitHub Container registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Log in to the Google Cloud Platform
uses: 'google-github-actions/auth@v2'
with:
credentials_json: '${{ secrets.GCP_CREDENTIALS }}'
- name: Configure auth to Google Cloud Platform
run: gcloud auth configure-docker ${{ vars.GAR_REGION }}-docker.pkg.dev
- name: Extract metadata for Docker image
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.GHCR_IMAGE }}
${{ env.GAR_IMAGE }}
tags: latest
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- name: Deploy to Cloud Run
uses: google-github-actions/deploy-cloudrun@v2
with:
service: lectures
image: ${{ env.GAR_IMAGE }}
region: ${{ vars.GCR_REGION }}