-
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c32b498
commit be6a537
Showing
7 changed files
with
46 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,12 +50,12 @@ jobs: | |
fetch-depth: 0 | ||
|
||
- name: Use .NET Core SDK 8.0.x | ||
uses: actions/setup-dotnet@v3 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Get Version from Nerdbank.GitVersioning | ||
uses: dotnet/[email protected].1 | ||
uses: dotnet/[email protected].2 | ||
with: | ||
setCommonVars: true | ||
|
||
|
@@ -77,20 +77,20 @@ jobs: | |
shell: pwsh | ||
|
||
- name: Publish ${{ matrix.ChannelName }} Arifacts | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: ./src | ||
name: PreBuild-${{ matrix.ChannelName }} | ||
|
||
- name: Publish Build Artifacts | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: Build | ||
name: BuildArtifacts | ||
if: ${{ success() && matrix.ChannelName == 'Standalone' }} | ||
|
||
- name: Publish Chocolatey Artifacts | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: .chocolatey | ||
name: Chocolatey | ||
|
@@ -118,18 +118,18 @@ jobs: | |
uses: microsoft/setup-msbuild@v1 | ||
|
||
- name: Use .NET Core SDK 8.0.x | ||
uses: actions/setup-dotnet@v3 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Download PreBuild | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: PreBuild-${{ matrix.ChannelName }} | ||
path: ./src | ||
|
||
- name: Download Build Artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: BuildArtifacts | ||
path: ./BuildArtifacts | ||
|
@@ -203,7 +203,7 @@ jobs: | |
if: ${{ success() && matrix.ChannelName != 'Standalone' }} | ||
|
||
- name: Publish ${{ matrix.ChannelName }} Arifacts | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: .\${{ matrix.ChannelName }} | ||
name: ${{ matrix.ChannelName }} | ||
|
@@ -236,14 +236,14 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Azure Login | ||
uses: azure/login@v1.5.1 | ||
uses: azure/login@v2 | ||
with: | ||
client-id: ${{ secrets.AZURE_CLIENT_ID }} | ||
tenant-id: ${{ secrets.AZURE_TENANT_ID }} | ||
subscription-id: ${{ secrets.AZURE_SUBSCRIPTION_ID }} | ||
|
||
- name: Download Nightly Signed | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Nightly_Signed | ||
path: "./NightlySigned" | ||
|
@@ -282,19 +282,19 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Download Standalone Signed App | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Standalone_Signed | ||
path: ./StandaloneSigned | ||
|
||
- name: Download Release Signed App | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Release_Signed | ||
path: ./ReleaseSigned | ||
|
||
- name: Download Build Artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
if: ${{ github.event_name == 'push' }} | ||
with: | ||
name: BuildArtifacts | ||
|
@@ -321,7 +321,7 @@ jobs: | |
shell: pwsh | ||
|
||
- name: Create GitHub Release | ||
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
tag_name: "Desktop-v${{ env.VERSION }}" | ||
body: ${{ steps.changelog.outputs.changelog }} | ||
|
@@ -356,7 +356,7 @@ jobs: | |
steps: | ||
|
||
- name: Download Release Signed | ||
uses: actions/download-artifact@v2 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Release_Signed | ||
path: ./ReleaseSigned | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,12 +39,12 @@ jobs: | |
fetch-depth: 0 | ||
|
||
- name: Use .NET Core SDK 8.0.x | ||
uses: actions/setup-dotnet@v3 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Nerdbank.GitVersioning | ||
uses: dotnet/[email protected].1 | ||
uses: dotnet/[email protected].2 | ||
with: | ||
setCommonVars: true | ||
|
||
|
@@ -66,13 +66,13 @@ jobs: | |
shell: pwsh | ||
|
||
- name: Publish PreBuild Arifacts | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: ./src | ||
name: PreBuild | ||
|
||
- name: Publish Files for Build | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: Build | ||
name: BuildArtifacts | ||
|
@@ -110,18 +110,18 @@ jobs: | |
steps: | ||
|
||
- name: Use .NET Core SDK 8.0.x | ||
uses: actions/setup-dotnet@v3 | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: 8.0.x | ||
|
||
- name: Download PreBuild | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: PreBuild | ||
path: ./src | ||
|
||
- name: Download Build Artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: BuildArtifacts | ||
path: ./BuildArtifacts | ||
|
@@ -145,7 +145,7 @@ jobs: | |
shell: pwsh | ||
|
||
- name: Publish ${{ matrix.ChannelName }} Arifacts | ||
uses: actions/upload-artifact@v3 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
path: ./${{ matrix.ChannelName }} | ||
name: ${{ matrix.ChannelName }} | ||
|
@@ -184,13 +184,13 @@ jobs: | |
|
||
steps: | ||
- name: Download PreBuild | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: PreBuild | ||
path: ./src | ||
|
||
- name: Download Build Artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: BuildArtifacts | ||
path: ./BuildArtifacts | ||
|
@@ -343,49 +343,49 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Download Windows_x64_x86 Artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Windows_x64_x86 | ||
path: ./Sign/Windows_x64_x86 | ||
|
||
- name: Download Windows_ARM Artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Windows_ARM | ||
path: ./Sign/Windows_ARM | ||
|
||
- name: Download macOS Artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: macOS | ||
path: ./Sign/macOS | ||
|
||
- name: Download Linux_ARM Artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Linux_ARM | ||
path: ./Sign/Linux_ARM | ||
|
||
- name: Download Linux_ARM64 Artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Linux_ARM64 | ||
path: ./Sign/Linux_ARM64 | ||
|
||
- name: Download Linux_Musl_x64 Artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Linux_Musl_x64 | ||
path: ./Sign/Linux_Musl_x64 | ||
|
||
- name: Download Linux_Musl_ARM_x64 Artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: Linux_Musl_ARM_x64 | ||
path: ./Sign/Linux_Musl_ARM_x64 | ||
|
||
- name: Download Build Artifacts | ||
uses: actions/download-artifact@v3 | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: BuildArtifacts | ||
path: "./BuildArtifacts" | ||
|
@@ -396,7 +396,7 @@ jobs: | |
echo "VERSION=$version" >> $GITHUB_ENV | ||
- name: Create GitHub Release | ||
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
tag_name: "Web-v${{ env.VERSION }}" | ||
body: ${{ steps.changelog.outputs.changelog }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters