Skip to content

Sync bela

Sync bela #254

Workflow file for this run

name: CI
on:
push:
paths-ignore:
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
- "docs/**"
- '**.md'
- '**.txt'
- 'LICENSE'
pull_request:
paths-ignore:
- "docs/**"
- '**.md'
- '**.txt'
- 'LICENSE'
jobs:
build:
name: Build
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
Privexec_target: [Privexec-win64, Privexec-win32, Privexec-arm64]
include:
- Privexec_target: Privexec-win64
short_target: win64
- Privexec_target: Privexec-win32
short_target: win32
- Privexec_target: Privexec-arm64
short_target: arm64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: compile-Privexec
run: pwsh -NoProfile -NoLogo -ExecutionPolicy unrestricted -File "./build.ps1" -Target "${{ matrix.short_target }}"
- name: Package release
if: startsWith(github.ref, 'refs/tags/')
shell: pwsh
# create package and show sha256 hash
run: |
Set-Location build
# cleanup zip files
Remove-Item -Force *.zip
cpack -G ZIP
$obj=Get-FileHash -Algorithm SHA256 Privexec*.zip
Split-Path -Leaf $obj.Path
$obj.Algorithm +":"+$obj.Hash.ToLower()
- name: Upload release
uses: svenstaro/upload-release-action@v2
if: startsWith(github.ref, 'refs/tags/')
with:
file_glob: true
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/Privexec-*.zip
tag: ${{ github.ref }}
overwrite: true