Skip to content

Commit 2a053c4

Browse files
committed
Removing --version from the .NET Tools
1 parent af8995a commit 2a053c4

3 files changed

+7
-6
lines changed

workflow-templates/DataMiner-CICD-Automation-DeployOnly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Install .NET Tools
5757
run: |
58-
dotnet tool install -g Skyline.DataMiner.CICD.Tools.Packager --version 2.0.3
58+
dotnet tool install -g Skyline.DataMiner.CICD.Tools.Packager
5959
dotnet tool install -g Skyline.DataMiner.CICD.Tools.CatalogUpload
6060
dotnet tool install -g Skyline.DataMiner.CICD.Tools.DataMinerDeploy
6161

workflow-templates/DataMiner-CICD-Connector-DeployOnly.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,18 @@ jobs:
2525
- uses: actions/checkout@v4
2626

2727
- name: Install DataMiner Deploy
28-
run: dotnet tool install -g Skyline.DataMiner.CICD.Tools.Packager --version 2.0.3
28+
run:
2929

30-
- name: Install DataMiner Deploy
31-
run: dotnet tool install -g Skyline.DataMiner.CICD.Tools.DataMinerDeploy
30+
- name: Install .NET Tools
31+
run: |
32+
dotnet tool install -g Skyline.DataMiner.CICD.Tools.Packager
33+
dotnet tool install -g Skyline.DataMiner.CICD.Tools.DataMinerDeploy
3234
3335
#ON RELEASE OR PRE-RELEASE
3436
- name: Create DMAPP - Release
3537
if: inputs.referenceType == 'tag'
3638
run: dataminer-package-create dmprotocol "${{ github.workspace }}" --name "${{ github.repository }}_${{ github.ref_name }}" --output "${{ github.workspace }}/_PackageResults" --version-override "${{ github.ref_name }}"
3739

38-
3940
#ON BUILD
4041
- name: Find and extract Protocol Version
4142
if: inputs.referenceType != 'tag'

workflow-templates/DataMiner-CICD-Connector.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# needs: CI
3939

4040
# steps:
41-
# - uses: actions/checkout@v3
41+
# - uses: actions/checkout@v4
4242

4343
# - name: Install DataMiner Deploy
4444
# run: dotnet tool install -g Skyline.DataMiner.CICD.Tools.DataMinerDeploy

0 commit comments

Comments
 (0)