2024-06-28 10:05:25 -05:00
|
|
|
name: Pre-Release WinUtil
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_run:
|
|
|
|
workflows: ["Compile"] #Ensure Compile winget.ps1 is done
|
|
|
|
types:
|
|
|
|
- completed
|
|
|
|
workflow_dispatch: # Manual trigger added
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-runspace:
|
|
|
|
runs-on: windows-latest
|
|
|
|
outputs:
|
|
|
|
version: ${{ steps.extract_version.outputs.version }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout Repository
|
|
|
|
uses: actions/checkout@v4
|
2024-06-28 17:15:39 -05:00
|
|
|
|
2024-06-28 10:05:25 -05:00
|
|
|
- name: Extract Version from winutil.ps1
|
|
|
|
id: extract_version
|
|
|
|
run: |
|
|
|
|
$version = ''
|
|
|
|
Get-Content ./winutil.ps1 -TotalCount 30 | ForEach-Object {
|
|
|
|
if ($_ -match 'Version\s*:\s*(\d{2}\.\d{2}\.\d{2})') {
|
2024-06-29 06:46:52 -05:00
|
|
|
$version = "pre"+$matches[1]
|
2024-06-28 10:05:25 -05:00
|
|
|
echo "version=$version" >> $GITHUB_ENV
|
|
|
|
echo "::set-output name=version::$version"
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (-not $version) {
|
|
|
|
Write-Error "Version not found in winutil.ps1"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
shell: pwsh
|
|
|
|
|
|
|
|
- name: Create and Upload Release
|
|
|
|
id: create_release
|
|
|
|
uses: softprops/action-gh-release@v2
|
|
|
|
with:
|
|
|
|
tag_name: ${{ steps.extract_version.outputs.version }}
|
|
|
|
name: Pre-Release ${{ steps.extract_version.outputs.version }}
|
2024-07-14 20:16:38 -05:00
|
|
|
body: "![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/ChrisTitusTech/winutil/${{ steps.extract_version.outputs.version }}/winutil.ps1)"
|
|
|
|
append_body: true
|
2024-06-28 10:05:25 -05:00
|
|
|
files: ./winutil.ps1
|
|
|
|
prerelease: true
|
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|