Skip to content

Commit c885034

Browse files
committed
Updates project references and names
Renames project-related variables and references in the release workflow file to reflect the renaming of the solution from ExtensibleMessageBroker to ExtensibleDataPipeline. This ensures that the CI/CD pipeline uses the correct project paths and file prefixes for building and releasing the application. It also updates the checkout and upload-artifact actions to newer versions.
1 parent 1dfe2aa commit c885034

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ on:
99
name: release
1010

1111
env:
12-
PROJECT_DIR: ./Emb.Cli.NetCore
13-
PROJECT_PATH: ./Emb.Cli.NetCore/Emb.Cli.NetCore.csproj
12+
PROJECT_DIR: ./Edp.Cli.NetCore
13+
PROJECT_PATH: ./Edp.Cli.NetCore/Edp.Cli.NetCore.csproj
1414
FRAMEWORK: net10.0
1515
SELF_CONTAINED: true
16-
FILE_PREFIX: ExtensibleMessageBroker_
16+
FILE_PREFIX: ExtensibleDataPipeline_
1717

1818
jobs:
1919
build:
@@ -31,12 +31,12 @@ jobs:
3131

3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535
with:
3636
fetch-depth: 0
3737

3838
- name: Install .NET
39-
uses: actions/setup-dotnet@v4
39+
uses: actions/setup-dotnet@v5
4040
with:
4141
dotnet-version: '10.0.x'
4242

@@ -79,7 +79,7 @@ jobs:
7979
echo "ZIP_NAME=$ZIP_NAME" >> $GITHUB_OUTPUT
8080
8181
- name: Upload artifact
82-
uses: actions/upload-artifact@v4
82+
uses: actions/upload-artifact@v5
8383
with:
8484
name: ${{ steps.build_package.outputs.ZIP_NAME }}
8585
path: ${{ env.PROJECT_DIR }}/${{ steps.build_package.outputs.ZIP_NAME }}
@@ -90,7 +90,7 @@ jobs:
9090
needs: build
9191
steps:
9292
- name: Download artifacts
93-
uses: actions/download-artifact@v4
93+
uses: actions/download-artifact@v6
9494
with:
9595
path: ./artifacts
9696

0 commit comments

Comments
 (0)