Deploy to google cloud storage #13
Workflow file for this run
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: Deploy to google cloud storage | |
on: | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
inputs: | |
RUN_ID: | |
description: 'Artifact run_id to deploy' | |
required: true | |
default: '<RUN_ID>' | |
jobs: | |
deploy-to-gcs: | |
runs-on: ubuntu-latest | |
permissions: # Required by google-github-actions/auth | |
contents: 'read' | |
id-token: 'write' | |
steps: | |
- name: Checkout | |
uses: 'actions/checkout@v4' | |
# ref: https://github.com/actions/download-artifact?tab=readme-ov-file#download-artifacts-from-other-workflow-runs-or-repositories | |
- name: Download artifacts from build | |
uses: actions/download-artifact@v4 | |
with: | |
name: jekyll-site | |
github-token: ${{ secrets.GH_PAT }} # personal access token with actions:read permissions on target repo | |
run-id: ${{ github.event.inputs.RUN_ID }} | |
path: ./site | |
- name: Authenticate to Google Cloud | |
uses: 'google-github-actions/auth@v2' | |
with: | |
workload_identity_provider: ${{ secrets.GC_WORKLOAD_IDENTITY_PROVIDER }} | |
- name: Upload to GCS | |
uses: 'google-github-actions/upload-cloud-storage@v2' | |
with: | |
path: './site' | |
destination: 'guide-dev' |