Description
Prerequisites
- I have written a descriptive issue title
- I have searched issues to ensure it has not already been reported
GitReleaseManager package
GitHub Actions
What are you seeing?
https://github.com/Stepami/hydrascript/actions/runs/10360139446/job/28678471915
In GitHub Actions logs i see no logs of tool.
But if i run it locally logs appear:
What is expected?
logging to GitHub Actions Console
Steps to Reproduce
name: Release Workflow
on:
push:
branches:
- 'release'
jobs:
create-release:
name: Create release
runs-on: ubuntu-latest
outputs:
determined_version: ${{ steps.version_step.outputs.majorMinorPatch }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup GitVersion
uses: gittools/actions/gitversion/setup@v3.0.0
with:
versionSpec: '5.12.0'
- name: Determine Version
id: version_step
uses: gittools/actions/gitversion/execute@v3.0.0
with:
useConfigFile: true
- name: Setup GitReleaseManager
uses: gittools/actions/gitreleasemanager/setup@v3.0.0
with:
versionSpec: '0.18.x'
- name: Create release with GitReleaseManager
uses: gittools/actions/gitreleasemanager/create@v3.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
owner: 'Stepami'
repository: 'hydrascript'
milestone: 'v${{ steps.version_step.outputs.majorMinorPatch }}'
name: 'v${{ steps.version_step.outputs.majorMinorPatch }}'
Output log or link to your CI build (if appropriate).
No response