Skip to content

Commit

Permalink
Additional fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed Feb 12, 2025
1 parent 2d98305 commit e396c3c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build-dotnet-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,10 @@ jobs:
run: nuget restore cpp/msbuild/ice.sln

- name: Pack .NET Packages
run: dotnet msbuild csharp/msbuild/ice.proj /t:Pack /p:Configuration=Release /p:Platform=x64
run: dotnet msbuild csharp\msbuild\ice.proj /t:Pack /p:Configuration=Release /p:Platform=x64
env:
VERSION: ${{ inputs.ice_version || '' }}
Version: ${{ inputs.ice_version || '' }}
PackageVersion: ${{ inputs.ice_version || '' }}

- name: Upload NuGet Packages
uses: actions/upload-artifact@v4
Expand All @@ -104,5 +105,5 @@ jobs:
- name: Publish NuGet Packages
run: |
dotnet nuget push csharp/msbuild/zeroc.ice.net/*.nupkg --source ${{ inputs.source_url }} --api-key ${{ secrets.NUGET_API_KEY }}
dotnet nuget push csharp\msbuild\zeroc.ice.net\*.nupkg --source ${{ inputs.source_url }} --api-key ${{ secrets.NUGET_API_KEY }}
if: inputs.source_url != ''
2 changes: 1 addition & 1 deletion .github/workflows/build-gem-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ jobs:
- name: Publish GEM Packages
run: |
curl -u "${REPOSITORY_USERNAME}:${REPOSITORY_PASSWORD}" \
--upload-file "ruby/*.gem" ${{ inputs.repository_url }}
--upload-file ruby/*.gem ${{ inputs.repository_url }}
if: inputs.repository_url != ''
2 changes: 1 addition & 1 deletion packaging/rpm/docker/rhel9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN dnf install -y https://zeroc.com/download/ice/3.7/el9/ice-repo-3.7.el9.noarc
RUN dnf install --setopt=multilib_policy=all -y \
rpmdevtools \
make \
curl \
curl-minimal \
git \
gcc-c++ \
glibc-devel \
Expand Down

0 comments on commit e396c3c

Please sign in to comment.