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_run:
|
2024-07-17 00:29:37 -05:00
|
|
|
workflows: ["Compile"]
|
2024-06-28 10:05:25 -05:00
|
|
|
types:
|
|
|
|
- completed
|
|
|
|
workflow_dispatch: # Manual trigger added
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-runspace:
|
|
|
|
runs-on: windows-latest
|
|
|
|
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: |
|
2024-07-17 00:36:59 -05:00
|
|
|
$version = (Get-Date -Format "yy-MM-dd")
|
2024-07-17 00:29:37 -05:00
|
|
|
echo "version=$version" >> $env:GITHUB_ENV
|
2024-07-17 00:13:56 -05:00
|
|
|
git tag $version
|
|
|
|
git push origin $version
|
2024-06-28 10:05:25 -05:00
|
|
|
shell: pwsh
|
|
|
|
|
|
|
|
- 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-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)"
|
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-07-16 23:55:54 -05:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|