2024-06-28 10:05:25 -05:00
|
|
|
name: Pre-Release WinUtil
|
|
|
|
|
2024-07-17 00:29:37 -05:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
actions: read
|
|
|
|
|
2024-06-28 10:05:25 -05:00
|
|
|
on:
|
|
|
|
workflow_dispatch: # Manual trigger added
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-runspace:
|
|
|
|
runs-on: windows-latest
|
2024-08-07 15:37:14 -05:00
|
|
|
env:
|
|
|
|
CERTIFICATE_BASE64: ${{ secrets.CERTIFICATE_BASE64 }}
|
2024-06-28 10:05:25 -05:00
|
|
|
steps:
|
|
|
|
- name: Checkout Repository
|
|
|
|
uses: actions/checkout@v4
|
2024-06-28 17:15:39 -05:00
|
|
|
|
2024-08-07 15:24:26 -05:00
|
|
|
- name: Compile project
|
|
|
|
shell: pwsh
|
|
|
|
run: |
|
|
|
|
Set-ExecutionPolicy Bypass -Scope Process -Force; ./Compile.ps1
|
|
|
|
continue-on-error: false # Directly fail the job on error, removing the need for a separate check
|
|
|
|
|
2024-07-30 21:33:30 -05:00
|
|
|
- name: Set Version to Todays Date
|
2024-06-28 10:05:25 -05:00
|
|
|
id: extract_version
|
|
|
|
run: |
|
2024-07-17 00:52:12 -05:00
|
|
|
$version = (Get-Date -Format "yy.MM.dd")
|
2024-07-30 21:33:30 -05:00
|
|
|
echo "VERSION=$version" >> $env:GITHUB_ENV
|
2024-07-17 00:43:58 -05:00
|
|
|
shell: pwsh
|
|
|
|
|
|
|
|
- name: Create Tag
|
|
|
|
id: create_tag
|
|
|
|
run: |
|
|
|
|
$tagExists = git tag -l $env:VERSION
|
2024-07-17 01:04:39 -05:00
|
|
|
if ($tagExists -eq "") {
|
2024-07-17 00:43:58 -05:00
|
|
|
git tag $env:VERSION
|
2024-07-30 21:33:30 -05:00
|
|
|
if ($LASTEXITCODE -ne 0) {
|
|
|
|
Write-Error "Failed to create tag $env:VERSION"
|
|
|
|
exit 1
|
|
|
|
}
|
2024-07-17 00:43:58 -05:00
|
|
|
git push origin $env:VERSION
|
2024-07-30 21:33:30 -05:00
|
|
|
if ($LASTEXITCODE -ne 0) {
|
|
|
|
Write-Error "Failed to push tag $env:VERSION"
|
|
|
|
exit 1
|
|
|
|
}
|
2024-07-17 00:52:12 -05:00
|
|
|
} else {
|
|
|
|
Write-Host "Tag $env:VERSION already exists, skipping tag creation"
|
2024-07-17 00:43:58 -05:00
|
|
|
}
|
2024-06-28 10:05:25 -05:00
|
|
|
shell: pwsh
|
|
|
|
|
2024-08-07 15:24:26 -05:00
|
|
|
- name: Create and import code signing certificate
|
|
|
|
shell: pwsh
|
|
|
|
run: |
|
|
|
|
[System.IO.File]::WriteAllBytes("$env:USERPROFILE\code-signing-cert.pfx", [System.Convert]::FromBase64String("$env:CERTIFICATE_BASE64"))
|
|
|
|
Import-PfxCertificate -FilePath "$env:USERPROFILE\code-signing-cert.pfx" -CertStoreLocation Cert:\CurrentUser\My
|
|
|
|
|
|
|
|
- name: Code sign winutil.ps1
|
|
|
|
shell: pwsh
|
|
|
|
run: |
|
|
|
|
$cert = Get-ChildItem -Path Cert:\CurrentUser\My -CodeSigningCert | Select-Object -First 1
|
|
|
|
if ($null -eq $cert) { throw "Code signing certificate not found" }
|
|
|
|
Set-AuthenticodeSignature -FilePath ./winutil.ps1 -Certificate $cert
|
|
|
|
|
|
|
|
- name: Verify code signature
|
|
|
|
shell: pwsh
|
|
|
|
run: |
|
|
|
|
$signature = Get-AuthenticodeSignature -FilePath ./winutil.ps1
|
|
|
|
if ($signature.Status -ne 'Valid') { throw "Code signing failed" }
|
2024-08-09 10:15:20 -05:00
|
|
|
|
2024-08-07 15:24:26 -05:00
|
|
|
- name: Upload winutil.ps1 as artifact
|
2024-08-07 15:57:26 -05:00
|
|
|
uses: actions/upload-artifact@v4
|
2024-08-07 15:24:26 -05:00
|
|
|
with:
|
|
|
|
name: winutil
|
|
|
|
path: ./winutil.ps1
|
2024-08-09 10:15:20 -05:00
|
|
|
|
2024-06-28 10:05:25 -05:00
|
|
|
- name: Create and Upload Release
|
|
|
|
id: create_release
|
|
|
|
uses: softprops/action-gh-release@v2
|
|
|
|
with:
|
2024-07-17 00:36:59 -05:00
|
|
|
tag_name: ${{ env.VERSION }}
|
|
|
|
name: Pre-Release ${{ env.VERSION }}
|
2024-07-17 00:53:21 -05:00
|
|
|
body: "![GitHub Downloads (specific asset, specific tag)](https://img.shields.io/github/downloads/ChrisTitusTech/winutil/${{ env.VERSION }}/winutil.ps1)"
|
2024-07-16 13:58:31 -05:00
|
|
|
append_body: false
|
2024-06-28 10:05:25 -05:00
|
|
|
files: ./winutil.ps1
|
|
|
|
prerelease: true
|
2024-07-16 13:58:31 -05:00
|
|
|
generate_release_notes: true
|
2024-06-28 10:05:25 -05:00
|
|
|
env:
|
2024-08-06 15:50:36 -05:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|