From 2f3309f177b288ef271164fb8673adcb2277a341 Mon Sep 17 00:00:00 2001 From: Tess Gauthier Date: Wed, 9 Apr 2025 09:32:16 -0400 Subject: [PATCH] Delete .github/workflows directory (#2344) --- .github/workflows/winget.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/winget.yml diff --git a/.github/workflows/winget.yml b/.github/workflows/winget.yml deleted file mode 100644 index 2a92405..0000000 --- a/.github/workflows/winget.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Publish to WinGet - -on: - release: - types: [released] - workflow_dispatch: - -jobs: - publish: - runs-on: ubuntu-latest - permissions: read-all - - steps: - - name: Extract version from tag - id: extract_version - run: | - version=$(echo "${{ github.event.release.tag_name }}" | grep -oP "(?<=v)[\d.]+") - echo "version=$version" >> $GITHUB_OUTPUT - - uses: vedantmgoyal9/winget-releaser@4ffc7888bffd451b357355dc214d43bb9f23917e - with: - identifier: Microsoft.OpenSSH.Preview - version: ${{ steps.extract_version.outputs.version }} - token: ${{ secrets.WINGET_TOKEN }} - fork-user: pwshBot