This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
Cut Release To Sandbox #25
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: Cut Release To Sandbox | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Branch to use' | |
required: true | |
default: 'main' | |
jobs: | |
call-common-workflow: | |
uses: dominant-strategies/quai-cicd/.github/workflows/cut-release-common.yml@main | |
with: | |
branch: main | |
needs_build: true | |
needs_docker: true | |
install_command: "npm ci" | |
cloud_deploy: true | |
skip_deploy: false | |
env: "quai-sandbox" | |
gcp_project_id: "flash-gasket-349320" | |
token_secret_name: "gke-sandbox-token" | |
update_version: true | |
secrets: | |
DOCKER: ${{ secrets.DOCKER }} | |
GH_PAT: ${{ secrets.GH_PAT }} | |
KUBE_CONFIG: ${{ secrets.KUBECONFIG_SANDBOX }} | |
BUILD_ARGS: '' | |
DOCKER_BUILD_ARGS: '' | |
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY2 }} | |
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }} | |
GH_GCP_TOKEN: ${{ secrets.GH_GCP_TOKEN }} |