Skip to content

Create GitHub Release #10

Create GitHub Release

Create GitHub Release #10

Workflow file for this run

name: Create GitHub Release
on:
push:
tags:
- 'v2.*'
permissions:
contents: write
jobs:
# This job runs against the yaml defined in the tag we were triggered on.
# So we can modify the release creation without having to wait for the change to flow into the commit
# that we're tagging, we call a reusable workflow from main
create-release:
uses: dotnet/vscode-csharp/.github/workflows/release-reusable.yml@main

Check failure on line 15 in .github/workflows/create-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/create-release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/create-release.yml" -> "dotnet/vscode-csharp/.github/workflows/release-reusable.yml@main" : failed to fetch workflow: workflow was not found.
with:
tag: ${{ github.ref_name }}
secrets: inherit