Skip to content

c

c #4

on:
push:
tags:
- "*"
jobs:
release:
steps:

Check failure on line 8 in .github/workflows/update-changelog.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/update-changelog.yml

Invalid workflow file

The workflow is not valid. .github/workflows/update-changelog.yml (Line: 8, Col: 5): Required property is missing: runs-on
- name: Perform release
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cocogitto release
id: release
uses: cocogitto/cocogitto-action@v3
with:
release: true
git-user: "Cog Bot"
git-user-email: "mycoolproject@org.org"
- name: Generate Changelog
run: cog changelog --at ${{ steps.release.outputs.version }} -t full_hash > GITHUB_CHANGELOG.md
- name: Upload github release
uses: softprops/action-gh-release@v1
with:
body_path: GITHUB_CHANGELOG.md
tag_name: ${{ steps.release.outputs.version }}