diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e803e6..1a3be86 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ on: tags: - "v*" pull_request: - branches: [ "master" ] + branches: [ "master", "development" ] #---------------------------------# # environment configuration # @@ -40,7 +40,7 @@ jobs: fetch-depth: 0 - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v1 + uses: microsoft/setup-msbuild@v2 - name: Build Cmder Launcher shell: pwsh @@ -72,26 +72,26 @@ jobs: name: cmder_wt_mini.zip - name: Upload artifact (cmder.zip) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: build/cmder.zip name: cmder.zip if-no-files-found: error - name: Upload artifact (cmder.7z) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: build/cmder.7z name: cmder.7z - name: Upload artifact (cmder_mini.zip) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: build/cmder_mini.zip name: cmder_mini.zip - name: Upload artifact (hashes.txt) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: build/hashes.txt name: hashes.txt diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ef2c07f..8e9f4b5 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -8,7 +8,7 @@ name: "CodeQL" on: push: - branches: [ "master" ] + branches: [ "master", "development" ] paths-ignore: - '**/*.md' - '**/*.txt' @@ -16,7 +16,7 @@ on: - '**/.gitignore' pull_request: # The branches below must be a subset of the branches above - branches: [ "master" ] + branches: [ "master", "development" ] paths-ignore: - '**/*.md' - '**/*.txt' @@ -60,7 +60,7 @@ jobs: # queries: security-extended,security-and-quality - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v1 + uses: microsoft/setup-msbuild@v2 - name: Build Cmder Launcher shell: pwsh diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6fceff3..8d9ecec 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -4,6 +4,7 @@ on: push: branches: - master + - development paths-ignore: - '**/*.md' - '**/*.txt' @@ -12,6 +13,7 @@ on: pull_request: branches: - master + - development paths-ignore: - '**/*.md' - '**/*.txt' diff --git a/.github/workflows/vendor.yml b/.github/workflows/vendor.yml index 4b96280..f237626 100644 --- a/.github/workflows/vendor.yml +++ b/.github/workflows/vendor.yml @@ -51,7 +51,7 @@ jobs: Set-GHVariable -Name LIST_UPDATED -Value $listUpdated.Trim(', ') echo "UPDATE_MESSAGE<< 0 with: title: 'Updates to `${{ env.COUNT_UPDATED }}` vendored dependencies' diff --git a/launcher/src/version.rc2.sample b/launcher/src/version.rc2.sample index 003621d..b809c36 100644 --- a/launcher/src/version.rc2.sample +++ b/launcher/src/version.rc2.sample @@ -1,7 +1,7 @@ /** * WARNING: do NOT modify this file! the content of this file should be - * automatically genereted before AppVeyor builds using the + * automatically generated before AppVeyor builds using the * respective .ps1 Powershell scripts. * */ diff --git a/scripts/build.ps1 b/scripts/build.ps1 index 71b955a..f577fa1 100644 --- a/scripts/build.ps1 +++ b/scripts/build.ps1 @@ -82,7 +82,7 @@ if ($Compile) { Write-Verbose "Building the launcher..." - # Referene: https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference + # Reference: https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference msbuild CmderLauncher.vcxproj /t:Clean,Build /p:configuration=Release /m if ($LastExitCode -ne 0) {