v1.0.0 #1
Workflow file for this run
This file contains hidden or 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 | |
| on: | |
| release: | |
| types: [published] | |
| permissions: | |
| contents: write | |
| jobs: | |
| publish: | |
| name: Publish package | |
| runs-on: windows-latest | |
| env: | |
| INNO_SETUP_INSTALL_DIR: "${{ github.workspace }}\\innosetup" | |
| defaults: | |
| run: | |
| shell: pwsh | |
| working-directory: ${{ github.workspace }} | |
| steps: | |
| - name: 'Checkout' | |
| uses: actions/checkout@v4 | |
| - name: 'Install Inno Setup' | |
| run: | | |
| Invoke-WebRequest https://jrsoftware.org/download.php/is.exe -OutFile is.exe | |
| ./is.exe /DIR="$env:INNO_SETUP_INSTALL_DIR" /VERYSILENT /SUPPRESSMSGBOXES | |
| - name: 'Create installer' | |
| run: | | |
| &"$env:INNO_SETUP_INSTALL_DIR\ISCC.exe" /DApplicationVersion=${{ github.event.release.tag_name }} ` | |
| /OOutput /Ffzf-win-tools-${{ github.event.release.tag_name }} installer.iss | |
| working-directory: .\installer | |
| - name: 'Publish' | |
| run: gh release upload ${{ github.event.release.tag_name }} fzf-win-tools-${{ github.event.release.tag_name }}.exe | |
| env: | |
| GITHUB_TOKEN: ${{ github.TOKEN }} | |
| working-directory: .\installer\Output |