Skip to content

Deploy nodes

Deploy nodes #1

Workflow file for this run

name: "Deploy nodes"
on:
workflow_dispatch:
inputs:
arch:
required: true
type: string
description: "Machine architecture (amd64, arm64)"
default: "amd64"
jobs:
deploy:
name: deploy-node
strategy:
matrix:
network: [ stagenet, testnet, mainnet ]
arch: [ "${{ github.event.inputs.arch }}" ]
uses: "./.github/workflows/deploy_node_to.yml"

Check failure on line 18 in .github/workflows/deploy_nodes.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy_nodes.yml

Invalid workflow file

error parsing called workflow ".github/workflows/deploy_nodes.yml" -> "./.github/workflows/deploy_node_to.yml" : failed to fetch workflow: workflow was not found.
with:
network: ${{ matrix.network }}
arch: ${{ matrix.arch }}