Skip to content

style: Using debug on Windows signal hook #4

style: Using debug on Windows signal hook

style: Using debug on Windows signal hook #4

Workflow file for this run

name: PasIRCLogBot
permissions:
contents: write
on:
push:
branches: [ main ]
tags: [ "*" ]
paths-ignore: [ "README.md", "LICENSE", "CHANGELOG.md", "cliff.toml" ]
pull_request:
branches: [ main ]
jobs:
build:
name: 01 - Build Application
uses: gcarreno/re-usable-workflows/.github/workflows/build.lazarus.yml@main
with:
config: '{
"app-name": "paslogbot",
"lpi-path": "src",
"bin-path": "bin",
"build-mode": "Release",
"lazarus-packages": "Indy10",
"matrix": {
"os": [
"ubuntu-latest",
"windows-latest",
"macos-latest"
],
"include":[
{
"os": "ubuntu-latest",
"triplet": "x86_64-linux"
},
{
"os": "windows-latest",
"triplet": "x86_64-win64"
},
{
"os": "macos-latest",
"triplet": "x86_64-darwin"
}
],
"lazarus-versions": [
"stable",
"3.4"
]
}
}'
fail-fast: false
release:
if: contains(github.ref_type, 'tag')
name: 02 - Create GitHub Release
uses: gcarreno/re-usable-workflows/.github/workflows/release.lazarus.yml@main
needs: [ build]
with:
config: '{
"app-name": "paslogbot",
"tag": "${{ github.ref_name }}",
"cliff-cfg": "cliff.toml",
"win": "${{ needs.build.outputs.win-artefact-path }}",
"lin": "${{ needs.build.outputs.lin-artefact-path }}",
"osx": "${{ needs.build.outputs.osx-artefact-path }}"
}'
fail-fast: false