Skip to content

Commit

Permalink
Update release script
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikEJ committed Feb 5, 2024
1 parent bd6b83f commit 952e326
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cli-release.yml
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
version:
description: 'Build version (x.xx)'
description: 'Build version (xxx)'
required: true

jobs:
Expand All @@ -15,13 +15,13 @@ jobs:
- uses: actions/checkout@v4

- name: Package CLI 6
run: dotnet pack src\Core\efcpt.6\efcpt.6.csproj -p:PackageVersion=6.${{ github.event.inputs.version }} -p:InformationalVersion=6.${{ github.event.inputs.version }}
run: dotnet pack src\Core\efcpt.6\efcpt.6.csproj -p:PackageVersion=6.1.${{ github.event.inputs.version }} -p:InformationalVersion=6.1.${{ github.event.inputs.version }}

- name: Package CLI 7
run: dotnet pack src\Core\efcpt.7\efcpt.7.csproj -p:PackageVersion=7.${{ github.event.inputs.version }} -p:InformationalVersion=7.${{ github.event.inputs.version }}
run: dotnet pack src\Core\efcpt.7\efcpt.7.csproj -p:PackageVersion=7.1.${{ github.event.inputs.version }} -p:InformationalVersion=7.1.${{ github.event.inputs.version }}

- name: Package CLI 8
run: dotnet pack src\Core\efcpt.8\efcpt.8.csproj -p:PackageVersion=8.${{ github.event.inputs.version }} -p:InformationalVersion=8.${{ github.event.inputs.version }}
run: dotnet pack src\Core\efcpt.8\efcpt.8.csproj -p:PackageVersion=8.1.${{ github.event.inputs.version }} -p:InformationalVersion=8.1.${{ github.event.inputs.version }}

- name: Publish NuGet
if: startsWith(github.ref, 'refs/heads/master')
Expand Down

0 comments on commit 952e326

Please sign in to comment.