Skip to content

fix: Release typo

fix: Release typo #4

Workflow file for this run

name: Release
# Triggering the workflow on pushes to main
on:
push:
branches:
- main
workflow_dispatch:
jobs:
# Release VS Code extension
release-vscode:
uses: './Enterwell.CI.Changelog.VSCodeExtension/.github/workflows/release.yml'

Check failure on line 13 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

invalid value workflow reference: no version specified
# Rest of the repository
rest:
name: Rest
runs-on: ubuntu-latest
steps:
# Checkout
- name: Checkout
uses: actions/checkout@v4
# Bump version and update changelog
- name: Bump version and update changelog
id: version-bump
uses: Enterwell/ChangelogManager-GitHub-Action@v3
with:
should-bump-version: true
path-to-project-file: Enterwell.CI.Changelog/Enterwell.CI.Changelog.csproj
# Committing new changes
- name: Commit changes
uses: EndBug/add-and-commit@v9.1.1
with:
message: "[skip ci] [version-bump] Automated commit for version ${{ steps.version-bump.outputs.bumped-semantic-version }}"