Skip to content

Lisooo790926 acitvates the actions πŸš€ #15

Lisooo790926 acitvates the actions πŸš€

Lisooo790926 acitvates the actions πŸš€ #15

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / CD-Main

Invalid workflow file

The workflow is not valid. In .github/workflows/main-cd.yml (Line: 37, Col: 15): Error from called workflow social-tw/social-tw-website/.github/workflows/deploy-relay.yml@8bb347af4bc8d9f359a65f314b6c1f5af22b8eee (Line: 6, Col: 9): Unexpected value 'branches' social-tw/social-tw-website/.github/workflows/deploy-relay.yml@8bb347af4bc8d9f359a65f314b6c1f5af22b8eee (Line: 9, Col: 17): Required property is missing: type
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