Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Commit

Permalink
Chore: CI/CD fixes (#348)
Browse files Browse the repository at this point in the history
* chore: fixed branch types

* chore: fixed ci versioning
  • Loading branch information
IvanJosipovic authored Aug 15, 2021
1 parent 726f240 commit eb3e1cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Dotnet Pack
if: steps.semantic.outputs.new_release_published == 'true'
working-directory: src/BlazorTable
run: dotnet pack -c Release -p:Version=${{ steps.version.outputs.new_tag }}
run: dotnet pack -c Release -p:Version=${{ steps.semantic.outputs.new_release_version }}

- name: Dotnet Nuget Push
if: steps.semantic.outputs.new_release_published == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"branches": ["master", "beta", "alpha"],
"branches": ["master", {name: 'beta', prerelease: true}, {name: 'alpha', prerelease: true}],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
Expand Down

0 comments on commit eb3e1cb

Please sign in to comment.