Update versions in preparation for release v3.8 #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Zip Manual as Asset on Tag | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install hugo-extended and httrack via chocolatey | |
working-directory: . | |
run: | | |
choco install hugo-extended --version 0.57.2 | |
choco install httrack | |
- name: Convert hugo site to standandalone HTML | |
working-directory: . | |
run: | | |
cmd /c start hugo.exe server --theme book | |
$env:Path += ";C:\Program Files\WinHTTrack\" | |
httrack.exe "http://127.0.0.1:1313/" -O "./httrack_output" | |
Set-Location -Path httrack_output | |
Rename-Item -Path 127.0.0.1_1313 -NewName nppUserManual | |
Get-ChildItem -Recurse "./nppUserManual" -Filter index.html | Foreach-Object { | |
$orgname = $_.FullName | |
$tmpname = "$($orgname).unedited" | |
echo $tmpname | |
Copy-Item $orgname $tmpname | |
get-content $tmpname | | |
%{$_ -replace 'id="book-search-input" maxlength="64" readonly','id="book-search-input" maxlength="64" readonly hidden'} | | |
%{$_ -replace 'href="http://localhost:1313/"','href="./index.html"'} | | |
%{$_ -replace 'href="http://localhost:1313/','href="'} | | |
set-content $orgname | |
Remove-Item $tmpname | |
} | |
Compress-Archive -Path nppUserManual -DestinationPath nppUserManual.zip | |
Set-Location -Path .. | |
- name: Store zipfile as asset | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ./httrack_output/nppUserManual.zip | |
asset_name: nppUserManual.zip | |
tag: ${{ github.ref }} | |
overwrite: true | |
body: "Some release text goes here" |