Skip to content

Commit 33cdee2

Browse files
committed
Update dotnet-release.yml
1 parent fc51b4b commit 33cdee2

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

VSIX/DevWinUI_Template/DevWinUI_Template/Files/dotnet-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
platform: [x64, x86, arm64] # Change platform if you want to build only a specific platform
4747

4848
steps:
49-
- uses: actions/checkout@v5
49+
- uses: actions/checkout@v6
5050
with:
5151
fetch-depth: 0
5252

@@ -85,14 +85,14 @@ jobs:
8585
dotnet publish ${{ env.PROJECT_PATH }} -c Release -r win-$($runtimeIdentifier.ToLower()) /p:GITHUB_ACTIONS=true -p:Platform=${{ matrix.platform }} --self-contained ${{ env.PUBLISH_SELF_CONTAINED }} -p:PublishSingleFile=${{ env.PUBLISH_SINGLE_FILE }} -p:PublishReadyToRun=${{ env.PUBLISH_READY_TO_RUN }} -p:PublishTrimmed=${{ env.PUBLISH_TRIMMED }} -p:TrimMode=${{ env.PUBLISH_TRIM_MODE }} -p:PublishAot=${{ env.PUBLISH_AOT }} --output ${{ env.PUBLISH_OUTPUT_FOLDER }}/${{ matrix.platform }}
8686
8787
# Zipping folder and all files
88-
- uses: vimtor/action-zip@v1.2
88+
- uses: vimtor/action-zip@v1.3
8989
with:
9090
files: ${{ env.PUBLISH_OUTPUT_FOLDER }}/${{ matrix.platform }}
9191
recursive: true
9292
dest: ${{ env.APP_NAME }}-v${{ steps.get-version.outputs.version }}-${{ matrix.platform }}.zip
9393

9494
# Uploading all zip files to access them in the 'release' job
95-
- uses: actions/upload-artifact@v4
95+
- uses: actions/upload-artifact@v7
9696
with:
9797
name: artifacts-${{ matrix.platform }}
9898
path: ${{ env.APP_NAME }}-v${{ steps.get-version.outputs.version }}-${{ matrix.platform }}.zip
@@ -122,12 +122,12 @@ jobs:
122122
APP_VERSION: ${{ needs.build.outputs.app-version }}
123123
IS_PRE_RELEASE: ${{ needs.build.outputs.IS_PRE_RELEASE }}
124124
steps:
125-
- uses: actions/checkout@v5
125+
- uses: actions/checkout@v6
126126
with:
127127
fetch-depth: 0
128128

129129
# Downloading all zip files into the GitHub root directory (uploaded in 'build' job)
130-
- uses: actions/download-artifact@v4
130+
- uses: actions/download-artifact@v8
131131
with:
132132
merge-multiple: true
133133

0 commit comments

Comments
 (0)