Skip to content

Commit

Permalink
rename job, fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gasparnagy committed Oct 16, 2024
1 parent fadfd72 commit 30505b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
# run: |
# Write-Output "Testing ${{ needs.build.outputs.product_full_version }} (${{ needs.build.outputs.product_main_version }})"

release-job:
release:
runs-on: ubuntu-latest
# needs: [build, test-job-1]
needs: [build]
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
shell: pwsh
run: |
Write-Output "${{ steps.next_version.outputs.product_next_version }}" >> versions.txt
[System.IO.File]::WriteAllText("Directory.Build.props", [System.IO.File]::ReadAllText("Directory.Build.props").Replace("${{ needs.build.outputs.product_version_prefix }}", "${{ steps.next_version.outputs.product_next_version }}"))
[System.IO.File]::WriteAllText("Directory.Build.props", [System.IO.File]::ReadAllText("Directory.Build.props").Replace("<VersionPrefix>${{ needs.build.outputs.product_version_prefix }}</VersionPrefix>", "<VersionPrefix>${{ steps.next_version.outputs.product_next_version }}</VersionPrefix>"))
git status
- name: Update Changelog
Expand Down

0 comments on commit 30505b3

Please sign in to comment.