From 097e6a2b4d515a8d5dee5cde1d36fe47b03f9572 Mon Sep 17 00:00:00 2001 From: Michael Rittmeister Date: Sun, 27 Oct 2024 20:41:54 +0100 Subject: [PATCH] Cleanup --- .github/workflows/winget/winget.yml | 26 -------------------------- build.gradle.kts | 2 +- 2 files changed, 1 insertion(+), 27 deletions(-) delete mode 100644 .github/workflows/winget/winget.yml diff --git a/.github/workflows/winget/winget.yml b/.github/workflows/winget/winget.yml deleted file mode 100644 index fdb37bd..0000000 --- a/.github/workflows/winget/winget.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: 'Bump winget version' -description: 'Bumps the winget manifest' -runs: - using: "composite" - steps: - name: Update winget manifest - runs-on: windows-latest - steps: - - name: Setup winget-create - run: choco install wingetcreate - - name: Bump Winget manifest - shell: pwsh - env: - WINGET_GITHUB_TOKEN: '${{ secrets.WINGET_UPLOAD_GITHUB_TOKEN }}' - run: > - $tagname = $env:GITHUB_REF.Replace("refs/tags/", "") - - $version = $tagname.Replace("v", "") - - $url = "https://github.com/DRSchlaubi/tonbrett/releases/download/${tagname}/Tonbrett.msix" - - wingetcreate.exe update Schlaubi.Tonbrett -u $url --version $version - - if ($version -notmatch "-") { - wingetcreate.exe submit .\manifests\s\Schlaubi\Tonbrett\${version}\ --token $env:WINGET_GITHUB_TOKEN - } diff --git a/build.gradle.kts b/build.gradle.kts index 1847d55..3bfa084 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { allprojects { group = "dev.schlaubi.tonbrett" - version = "1.22.10" + version = "1.22.11" repositories { mavenCentral()