mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-03-12 04:35:40 -07:00
40 lines
1.3 KiB
YAML
40 lines
1.3 KiB
YAML
name: Submit winget
|
|
|
|
on:
|
|
workflow_dispatch: ~
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
winget:
|
|
name: Submit Winget Package
|
|
runs-on: windows-latest
|
|
if: ${{ !github.event.release.prerelease }}
|
|
steps:
|
|
- name: Submit package to Windows Package Manager Community Repository
|
|
run: |
|
|
$wingetPackage = "Tautulli.Tautulli"
|
|
$gitToken = "${{ secrets.WINGET_TOKEN }}"
|
|
|
|
$github = Invoke-RestMethod -uri "https://api.github.com/repos/Tautulli/Tautulli/releases/latest"
|
|
$installerUrl = $github | Select -ExpandProperty assets -First 1 | Where-Object -Property name -match "Tautulli-windows-.*-x64.exe" | Select -ExpandProperty browser_download_url
|
|
$version = "$($github.tag_name.Trim('v')).1"
|
|
|
|
# getting latest wingetcreate file
|
|
iwr https://aka.ms/wingetcreate/latest -OutFile wingetcreate.exe
|
|
.\wingetcreate.exe update $wingetPackage -s -v $version -u $installerUrl -t $gitToken
|
|
|
|
virus-total:
|
|
name: VirusTotal Scan
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Upload to VirusTotal
|
|
uses: crazy-max/ghaction-virustotal@v4
|
|
with:
|
|
vt_api_key: ${{ secrets.VT_API_KEY }}
|
|
github_token: ${{ secrets.GHACTIONS_TOKEN }}
|
|
update_release_body: true
|
|
files: |
|
|
.exe$
|
|
.pkg$
|