Lisooo790926 acitvates the actions π #14
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: CD-Main | ||
run-name: ${{ github.actor }} acitvates the actions π | ||
on: | ||
workflow_dispatch: | ||
branches: ['feat_system_cicd_enhancment'] | ||
inputs: | ||
build-services: | ||
description: 'build which services' | ||
required: true | ||
default: 'relay-frontend' | ||
type: choice | ||
options: | ||
- relay-frontend | ||
- contract | ||
version: | ||
description: 'current deploy version' | ||
required: true | ||
default: '0.0.1' | ||
jobs: | ||
build: | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
uses: ./.github/workflows/build-all.yml | ||
with: | ||
build-services: ${{ inputs.build-services }} | ||
version: ${{ inputs.version }} | ||
secrets: inherit | ||
relay: | ||
needs: build | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
uses: ./.github/workflows/deploy-relay.yml | ||
Check failure on line 37 in .github/workflows/main-cd.yml GitHub Actions / CD-MainInvalid workflow file
|
||
with: | ||
version: ${{ inputs.version }} | ||
secrets: inherit | ||
frontend: | ||
needs: build | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
uses: ./.github/workflows/deploy-frontend.yml | ||
with: | ||
version: ${{ inputs.version }} | ||
secrets: inherit |