Skip to content

Commit

Permalink
Fix release assets publication (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
vanbukin authored Nov 9, 2022
1 parent 84fa913 commit 0b8bcee
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
- name: Get package
shell: bash
run: |
$OUT_PACKAGE_NAME=$(ls out/)
OUT_PACKAGE_NAME="$(ls out/)"
echo "out_package_name=$OUT_PACKAGE_NAME" >> $GITHUB_ENV
- name: Upload release assets
uses: actions/upload-release-asset@v1
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Dodo.Primitives

[![Latest release](https://img.shields.io/badge/nuget-2.0.0-alpha2-blue?&kill_cache=1)](https://www.nuget.org/packages/Dodo.Primitives/2.0.0-alpha2)
[![Coverage Status](https://coveralls.io/repos/github/dodopizza/primitives/badge.svg?branch=refs/tags/2.0.0-alpha2&kill_cache=1)](https://coveralls.io/github/dodopizza/primitives?branch=refs/tags/2.0.0-alpha2)
[![Latest release](https://img.shields.io/badge/nuget-2.0.0-alpha3-blue?&kill_cache=1)](https://www.nuget.org/packages/Dodo.Primitives/2.0.0-alpha3)
[![Coverage Status](https://coveralls.io/repos/github/dodopizza/primitives/badge.svg?branch=refs/tags/2.0.0-alpha3&kill_cache=1)](https://coveralls.io/github/dodopizza/primitives?branch=refs/tags/2.0.0-alpha3)

Library provides .NET primitive types:

Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<VersionPrefix>2.0.0</VersionPrefix>
<VersionSuffix>alpha2</VersionSuffix>
<VersionSuffix>alpha3</VersionSuffix>
</PropertyGroup>
</Project>

0 comments on commit 0b8bcee

Please sign in to comment.