Home > Software engineering >  running ps2exe in github actions
running ps2exe in github actions

Time:01-07

I am trying to automatically "compile" my ps1 script to .exe file on push. So I wrote the yml file to install ps2exe then run it on the script file that is in root of my repo.

I took the PSScriptAnalyzer from the demo and modified it.

name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions            
  • Related