Skip to content

Commit

Permalink
fix(ci): env variable in release-action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
asvol committed Nov 27, 2024
1 parent 3d4f5e6 commit e5ce626
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

env:
PATH_TO_PROJECTS: ${{ github.workspace }}\src
PATH_TO_PROJECTSPACKAGE_OUTPUT_DIRECTORY: ${{ github.workspace }}\output\
PACKAGE_OUTPUT_DIRECTORY: ${{ github.workspace }}\output\
NUGET_SOURCE_URL: 'https://api.nuget.org/v3/index.json'
GITHUB_PACKAGES_URL: 'https://nuget.pkg.github.com/asv-soft/index.json'
PROPS_VERSION_VAR_NAME: 'ProductVersion'
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- name: Pack projects to Nuget
run: |
cd src
dotnet pack -c Release --no-build --no-restore -p:PackageVersion=${{ steps.version.outputs.version-without-v }} --output ${{ env.PACKAGE_OUTPUT_DIRECTORY }}
dotnet pack -c Release --no-build --no-restore -p:PackageVersion=${{ env.VERSION }} --output ${{ env.PACKAGE_OUTPUT_DIRECTORY }}
- name: Push packages to Nuget
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-debug-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Pack projects to Nuget
run: |
cd src
dotnet pack -c Release --no-build --no-restore -p:PackageVersion=${{ steps.version.outputs.version-without-v }} --output ${{ env.PACKAGE_OUTPUT_DIRECTORY }}
dotnet pack -c Release --no-build --no-restore -p:PackageVersion=${{ env.VERSION }} --output ${{ env.PACKAGE_OUTPUT_DIRECTORY }}
- name: Push packages to Github
run: |
Expand Down
1 change: 0 additions & 1 deletion src/Asv.IO/Asv.IO.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@
<ItemGroup>
<PackageReference Include="DotNext.Threading" Version="5.15.0" />
<PackageReference Include="ObservableCollections.R3" Version="3.3.1" />

<PackageReference Include="System.IO.Pipelines" Version="8.0.0" />
<PackageReference Include="ZLogger" Version="$(ZLoggerVersion)" />
<PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJsonVersion)" />
Expand Down

0 comments on commit e5ce626

Please sign in to comment.