Skip to content

Release

Release #214

Workflow file for this run

---
name: Release
on:
workflow_run:
types:
- completed
workflows:
- 'ci'
branches:
- release/*
jobs:
print-debug-info:
name: Print debug info for Release workflow
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2
create-release:
name: Create release
if: ${{ github.event.workflow_run.conclusion == 'success' }}
uses: networkservicemesh/.github/.github/workflows/release.yaml@main
secrets:
token: ${{ secrets.NSM_BOT_GITHUB_TOKEN }}
release-dependent-repositories:
name: Release dependent repositories
needs: create-release
uses: networkservicemesh/.github/.github/workflows/release-dependent-repositories.yaml@main
with:
dependent_repositories: ["sdk"]

Check failure on line 30 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yaml (Line: 30, Col: 31): A sequence was not expected
secrets:
token: ${{ secrets.NSM_BOT_GITHUB_TOKEN }}