Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Build python package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
Expand All @@ -46,17 +46,17 @@ jobs:
python -c "from ${{ env.PACKAGE_NAME }} import __version__; print(__version__)"

- name: Upload packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ansys-api-additive-packages
name: ansys-api-additive-packages-python
path: dist/
retention-days: 7

nuget:
name: Build nuget package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup dotnet
uses: actions/setup-dotnet@v3
Expand All @@ -71,9 +71,9 @@ jobs:
rm -rf nuget_package
dotnet pack csharp/Ansys.Api.Additive.csproj -c Release -o nuget_package -p:Version=${version}
- name: Upload package artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ansys-api-additive-packages
name: ansys-api-additive-packages-nuget
path: nuget_package/
retention-days: 7

Expand All @@ -87,7 +87,7 @@ jobs:
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4

- name: Display structure of downloaded files
run: ls -R
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4

- name: Display structure of downloaded files
run: ls -R
Expand Down
2 changes: 1 addition & 1 deletion ansys/api/additive/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.0.2-dev0
5.0.3-dev0
2 changes: 2 additions & 0 deletions ansys/api/additive/v0/additive_domain.proto
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ message AdditiveMaterial {
repeated ThermalPropertiesDataPoint thermal_properties_data_points = 35;
repeated CharacteristicWidthDataPoint characteristic_width_data_points = 36;
string description = 37;
double cooling_rate_sim_coeff_a = 38;
double cooling_rate_sim_coeff_b = 39;
}

message CharacteristicWidthDataPoint {
Expand Down