Skip to content

Commit

Permalink
v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
davidxuang committed Nov 10, 2022
1 parent d5f7fa5 commit 977c52c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
- name: Pack
if: startsWith(github.ref, 'refs/tags/')
run: |
tar cavf musicdecrypto-all-$GIT_TAG_NAME-net6.0-noarch.tar.xz -C ./generic/ $(cd ./generic/ && echo *)
sha256sum musicdecrypto-all-$GIT_TAG_NAME-net6.0-noarch.tar.xz > musicdecrypto-all-$GIT_TAG_NAME-net6.0-noarch.tar.xz.sha256
tar cavf musicdecrypto-all-$GIT_TAG_NAME-net7.0-noarch.tar.xz -C ./generic/ $(cd ./generic/ && echo *)
sha256sum musicdecrypto-all-$GIT_TAG_NAME-net7.0-noarch.tar.xz > musicdecrypto-all-$GIT_TAG_NAME-net7.0-noarch.tar.xz.sha256
strip ./cli-x64/musicdecrypto
aarch64-linux-gnu-strip ./cli-arm64/musicdecrypto
tar cavf musicdecrypto-gui-$GIT_TAG_NAME-linux-x64.tar.xz -C ./gui-x64/ $(cd ./gui-x64/ && echo *)
Expand All @@ -56,8 +56,8 @@ jobs:
uses: softprops/action-gh-release@v1
with:
files: |
musicdecrypto-all-${{ steps.tag.outputs.tag }}-net6.0-noarch.tar.xz
musicdecrypto-all-${{ steps.tag.outputs.tag }}-net6.0-noarch.tar.xz.sha256
musicdecrypto-all-${{ steps.tag.outputs.tag }}-net7.0-noarch.tar.xz
musicdecrypto-all-${{ steps.tag.outputs.tag }}-net7.0-noarch.tar.xz.sha256
musicdecrypto-gui-${{ steps.tag.outputs.tag }}-linux-x64.tar.xz
musicdecrypto-gui-${{ steps.tag.outputs.tag }}-linux-x64.tar.xz.sha256
musicdecrypto-gui-${{ steps.tag.outputs.tag }}-linux-arm64.tar.xz
Expand Down
2 changes: 1 addition & 1 deletion MusicDecrypto.Avalonia/MusicDecrypto.Avalonia.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>musicdecrypto-avalonia</AssemblyName>
<OutputType>WinExe</OutputType>
<VersionPrefix>2.1.0</VersionPrefix>
<VersionPrefix>2.1.1</VersionPrefix>
<Nullable>enable</Nullable>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion MusicDecrypto.Commandline/MusicDecrypto.Commandline.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net7.0</TargetFramework>
<AssemblyName>musicdecrypto</AssemblyName>
<OutputType>Exe</OutputType>
<Version>2.1.0</Version>
<Version>2.1.1</Version>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion MusicDecrypto.Library/MusicDecrypto.Library.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>libmusicdecrypto</AssemblyName>
<Version>2.1.0</Version>
<Version>2.1.1</Version>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down

0 comments on commit 977c52c

Please sign in to comment.