You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
name: test
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "*"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
patch:
|
|
runs-on: windows-latest
|
|
timeout-minutes: 5
|
|
steps:
|
|
- uses: actions/checkout@main
|
|
|
|
- name: test.md
|
|
id: read_release
|
|
run: |
|
|
$Parameters = @{
|
|
Uri = "https://api.github.com/repos/farag2/Sophia-Script-for-Windows/releases"
|
|
UseBasicParsing = $true
|
|
Verbose = $true
|
|
}
|
|
$Penultimate = (Invoke-RestMethod @Parameters).tag_name | Select-Object -Index 1
|
|
|
|
# https://en.wikipedia.org/wiki/Percent-encoding
|
|
$Release = (Get-Content -Path ReleaseNotes.md -Encoding utf8 -Raw).replace("`n", "%0A").replace("`r", "%0D").replace("NewVersion", "${{ github.ref }}").replace("ReleaseDate", "$((Get-Date).ToShortDateString())").replace("OldVersion", "$($Penultimate)")
|
|
|
|
# https://trstringer.com/github-actions-multiline-strings/
|
|
echo "::set-output name=RELEASE_BODY::$Release"
|
|
|
|
- name: Uploading
|
|
uses: svenstaro/upload-release-action@master
|
|
with:
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
file: ReleaseNotes.md
|
|
tag: ${{ github.ref }}
|
|
body: ${{ steps.read_release.outputs.RELEASE_BODY }}
|
|
overwrite: true
|
|
file_glob: true
|
|
prerelease: true
|
|
|