Skip to content

Fix for the 10 sec delay when opening links with notif enabled on Win10 #52

Fix for the 10 sec delay when opening links with notif enabled on Win10

Fix for the 10 sec delay when opening links with notif enabled on Win10 #52

Workflow file for this run

name: Build for Windows
on:
workflow_dispatch:
pull_request:
types: ['opened', 'reopened', 'synchronize', 'ready_for_review']
paths:
- '**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Build:
name: Build on self-hosted
runs-on: m2mini-win11
permissions:
contents: write
defaults:
run:
# ./ is the repo root
working-directory: ./
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Get version
run: |
$version = ./Get-ProjectVersion.ps1 -ProjectPath BrowseRouter
echo "VERSION=$version" >> $env:GITHUB_ENV
- name: Get PR URL
run: |
$pr = ${{ github.event.pull_request.number }}
$url = "https://github.com/nref/BrowseRouter/pull/$pr"
echo "PR_URL=$url" >> $env:GITHUB_ENV
- name: Get PR Title and Description
run: |
$title=$(gh pr view $env:PR_URL --json title -q .title)
$description=$(gh pr view $env:PR_URL --json body -q .body)
echo $description > pr_description.md
echo "PR_TITLE=$title" >> $env:GITHUB_ENV
echo "PR_DESCRIPTION_FILE=pr_description.md" >> $env:GITHUB_ENV
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Build and sign
run: pwsh ./make.ps1
- uses: ncipollo/release-action@v1
with:
artifacts: "./Releases/**/*.zip"
draft: true
allowUpdates: true
tag: ${{ env.VERSION }}
name: ${{ env.VERSION }} - ${{ env.PR_TITLE }}
bodyFile: ${{ env.PR_DESCRIPTION_FILE }}