Skip to content

Add specific minimal ci/cd service account instead of all access account #50

Add specific minimal ci/cd service account instead of all access account

Add specific minimal ci/cd service account instead of all access account #50

Workflow file for this run

name: Release on Google Bucket
on:
push:
branches:
- main
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: "auth"
uses: "google-github-actions/auth@v2"
with:
workload_identity_provider: "projects/1019539084286/locations/global/workloadIdentityPools/github/providers/sourcify"
service_account: "sourcify-docs-cd@sourcify-project.iam.gserviceaccount.com"
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "22"
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: "upload-files"
uses: "google-github-actions/upload-cloud-storage@v2"
with:
path: "build"
destination: "sourcify-docs-bucket"
parent: false
glob: "**/*"