Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/generate_release_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

on:
push:
branches: [ "releases/**" ]
branches: [ "releases/**", "beta/**" ]
tags:
- v[0-9]+.[0-9]+.[0-9]+*
env:
Expand Down Expand Up @@ -80,14 +80,14 @@
run: echo "version=${{ steps.version_tag.outputs.full }}" >> $GITHUB_OUTPUT

- name: Split branch name
if: ${{ (github.ref_type == 'branch') && startsWith(github.ref_name,'releases/v') }}
if: ${{ (github.ref_type == 'branch') && (startsWith(github.ref_name,'releases/v') || startsWith(github.ref_name,'beta/v'))}}
env:
BRANCH: ${{ github.ref_name }}
id: version_branch
run: echo "branch_version=${BRANCH:10}" >> $GITHUB_OUTPUT
run: echo "branch_version=${BRANCH##*/v}" >> $GITHUB_OUTPUT

- name: Generate version from branch
if: ${{ steps.version_branch.outputs.branch_version && (github.ref_type == 'branch') && startsWith(github.ref_name,'releases/v') }}
if: ${{ steps.version_branch.outputs.branch_version && (github.ref_type == 'branch') && (startsWith(github.ref_name,'releases/v') || startsWith(github.ref_name,'beta/v')) }}
id: version_branch_generate
uses: HardNorth/github-version-generate@v1.4.0
with:
Expand Down Expand Up @@ -137,8 +137,8 @@

build:
#Project uses .NET Framework 4.6.2 which is not in later Github hosted runners
# See: https://github.com/actions/runner-images/blob/main/images/windows/Windows2019-Readme.md
runs-on: windows-2019
# See: https://github.com/actions/runner-images/blob/main/images/windows/Windows2025-Readme.md
runs-on: windows-2025
needs: [versioning]
env:
artifact-version: ${{ needs.versioning.outputs.artifact-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ permissions:
jobs:
build:
#Project uses .NET Framework 4.6.2 which is not in later Github hosted runners
# See: https://github.com/actions/runner-images/blob/main/images/windows/Windows2019-Readme.md
runs-on: windows-2019
# See: https://github.com/actions/runner-images/blob/main/images/windows/Windows2025-Readme.md
runs-on: windows-2025

steps:
- uses: actions/checkout@v4
Expand Down