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

Commit eb3e1cb

Browse files
Chore: CI/CD fixes (#348)
* chore: fixed branch types * chore: fixed ci versioning
1 parent 726f240 commit eb3e1cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- name: Dotnet Pack
7171
if: steps.semantic.outputs.new_release_published == 'true'
7272
working-directory: src/BlazorTable
73-
run: dotnet pack -c Release -p:Version=${{ steps.version.outputs.new_tag }}
73+
run: dotnet pack -c Release -p:Version=${{ steps.semantic.outputs.new_release_version }}
7474

7575
- name: Dotnet Nuget Push
7676
if: steps.semantic.outputs.new_release_published == 'true'

.releaserc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"branches": ["master", "beta", "alpha"],
2+
"branches": ["master", {name: 'beta', prerelease: true}, {name: 'alpha', prerelease: true}],
33
"plugins": [
44
"@semantic-release/commit-analyzer",
55
"@semantic-release/release-notes-generator",

0 commit comments

Comments
 (0)