merge files

This commit is contained in:
Tess Gauthier 2022-05-20 11:23:18 -04:00
parent b96441c549
commit 1483077cf6
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ jobs:
} }
} }
$urls = "https://github.com/$repo/releases/download/$tag/$msi_x64, https://github.com/$repo/releases/download/$tag/$msi_x86" $urls = "https://github.com/$repo/releases/download/$tag/$msi_x64, https://github.com/$repo/releases/download/$tag/$msi_x86"
echo "::set-env name=PACKAGE_URLS::$urls" echo "PACKAGE_URLS=$urls" >> $GITHUB_ENV
name: Get Release URLs name: Get Release URLs
- run: | - run: |
@ -50,7 +50,7 @@ jobs:
name: Download WinGet Requirements name: Download WinGet Requirements
- run: | - run: |
echo " wingetcreate update Microsoft.OpenSSH -u ${PACKAGE_URLS} -o ${GITHUB_WORKSPACE}" echo "wingetcreate update Microsoft.OpenSSH -u ${PACKAGE_URLS} -o ${GITHUB_WORKSPACE}"
wingetcreate update Microsoft.OpenSSH -u ${PACKAGE_URLS} -o ${GITHUB_WORKSPACE} wingetcreate update Microsoft.OpenSSH -u ${PACKAGE_URLS} -o ${GITHUB_WORKSPACE}
# wingetcreate update Microsoft.OpenSSH -u ${PACKAGE_URLS} -t ${{ secrets.GITHUB_TOKEN }} --submit # wingetcreate update Microsoft.OpenSSH -u ${PACKAGE_URLS} -t ${{ secrets.GITHUB_TOKEN }} --submit
name: WinGet Update name: WinGet Update