Skip to content

Commit 8dc8441

Browse files
authored
fix: Update org references for install-dpf-server (#65)
* Update org references for install-dpf-server * Update Windows Runner * Version maintenance
1 parent a1e6c52 commit 8dc8441

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ on:
1414
jobs:
1515
test_windows:
1616
name: Windows
17-
runs-on: windows-2019
17+
runs-on: windows-2022
1818

1919
env:
20-
ANSYS_VERSION: 221
21-
20+
ANSYS_VERSION: 261
2221
steps:
23-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v5
2423

2524
- id: install-dpf
2625
uses: ./install-dpf-server
@@ -41,10 +40,10 @@ jobs:
4140
runs-on: ubuntu-latest
4241

4342
env:
44-
ANSYS_VERSION: 221
43+
ANSYS_VERSION: 261
4544

4645
steps:
47-
- uses: actions/checkout@v2
46+
- uses: actions/checkout@v5
4847

4948
- id: install-dpf
5049
uses: ./install-dpf-server

install-dpf-server/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: "Install DPF Server"
22
description: "Install and test DPF Server for different OS and versions"
33
inputs:
44
dpf-standalone-TOKEN:
5-
description: "github secret to access https://github.com/ansys-dpf/dpf-standalone"
5+
description: "github secret to access https://github.com/ansys-internal/dpf-standalone"
66
required: true
77
ANSYS_VERSION:
8-
description: "Ansys release version number in the format 221"
8+
description: "Ansys release version number in the format 261"
99
required: false
10-
default: "221"
10+
default: "261"
1111
outputs:
1212
SERVER:
1313
description: "Path to the server"
@@ -21,7 +21,7 @@ runs:
2121
$TEMP2 = $TEMP.ToString()
2222
$ANSYS_VERSION_WITH_POINT=$TEMP2.Insert(2,".")
2323
$BranchName = if ("${{runner.os}}" -eq "Linux") { "linux_release-$ANSYS_VERSION_WITH_POINT" } else { "win_release-$ANSYS_VERSION_WITH_POINT" }
24-
git clone --branch $BranchName --single-branch https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-dpf/dpf-standalone
24+
git clone --branch $BranchName --single-branch https://${{inputs.dpf-standalone-TOKEN}}@github.com/ansys-internal/dpf-standalone
2525
shell: pwsh
2626
2727
- run: |

0 commit comments

Comments
 (0)