Revert "Add confirmations for every option in the script" #17
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: publish-exe | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "**.ps1" | |
jobs: | |
ps1-to-exe: | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Ps2exe | |
shell: powershell | |
run: Install-Module ps2exe -force | |
- name: Comple | |
shell: powershell | |
run: Invoke-ps2exe .\main.ps1 .\likes-gay-config.exe | |
- name: Publish | |
uses: softprops/[email protected] | |
with: | |
files: likes-gay-config.exe | |
tag_name: v${{ github.run_number }} | |
prerelease: false | |
name: v${{ github.run_number }} |