Skip to content

release!: v3.0.1

release!: v3.0.1 #1

name: Misc on Prod Release
on:
push:
tags:
- 'v*.*.*'
jobs:
build:
name: 'Create a new release'

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

View workflow run for this annotation

GitHub Actions / Misc on Prod Release

Invalid workflow file

The workflow is not valid. .github/workflows/create-release-prod.yml (Line: 10, Col: 5): Required property is missing: runs-on
permissions:
contents: write
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: 'Extract changelog'
id: extract-changelog
uses: TheDotLabs/extract-release-notes@main
- name: Create release
uses: ncipollo/release-action@v1
with:
body: ${{ steps.extract-changelog.outputs.release_notes }}
token: ${{ secrets.GITHUB_TOKEN }}