|
46 | 46 | platform: [x64, x86, arm64] # Change platform if you want to build only a specific platform |
47 | 47 |
|
48 | 48 | steps: |
49 | | - - uses: actions/checkout@v5 |
| 49 | + - uses: actions/checkout@v6 |
50 | 50 | with: |
51 | 51 | fetch-depth: 0 |
52 | 52 |
|
@@ -85,14 +85,14 @@ jobs: |
85 | 85 | 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 }} |
86 | 86 |
|
87 | 87 | # Zipping folder and all files |
88 | | - - uses: vimtor/action-zip@v1.2 |
| 88 | + - uses: vimtor/action-zip@v1.3 |
89 | 89 | with: |
90 | 90 | files: ${{ env.PUBLISH_OUTPUT_FOLDER }}/${{ matrix.platform }} |
91 | 91 | recursive: true |
92 | 92 | dest: ${{ env.APP_NAME }}-v${{ steps.get-version.outputs.version }}-${{ matrix.platform }}.zip |
93 | 93 |
|
94 | 94 | # Uploading all zip files to access them in the 'release' job |
95 | | - - uses: actions/upload-artifact@v4 |
| 95 | + - uses: actions/upload-artifact@v7 |
96 | 96 | with: |
97 | 97 | name: artifacts-${{ matrix.platform }} |
98 | 98 | path: ${{ env.APP_NAME }}-v${{ steps.get-version.outputs.version }}-${{ matrix.platform }}.zip |
@@ -122,12 +122,12 @@ jobs: |
122 | 122 | APP_VERSION: ${{ needs.build.outputs.app-version }} |
123 | 123 | IS_PRE_RELEASE: ${{ needs.build.outputs.IS_PRE_RELEASE }} |
124 | 124 | steps: |
125 | | - - uses: actions/checkout@v5 |
| 125 | + - uses: actions/checkout@v6 |
126 | 126 | with: |
127 | 127 | fetch-depth: 0 |
128 | 128 |
|
129 | 129 | # 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 |
131 | 131 | with: |
132 | 132 | merge-multiple: true |
133 | 133 |
|
|
0 commit comments