-
-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
79 additions
and
72 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: compile-inno-setup | ||
|
||
on: | ||
release: | ||
types: [released] | ||
|
||
permissions: | ||
contents: write | ||
id-token: write | ||
packages: write | ||
|
||
jobs: | ||
compile-inno-setup: | ||
name: Compile setup and publish | ||
runs-on: windows-latest | ||
defaults: | ||
run: | ||
working-directory: inno_setup | ||
steps: | ||
- name: Checkout version-fox | ||
uses: actions/checkout@v3 | ||
- name: Get version-fox version | ||
id: version-fox-version | ||
uses: actions/github-script@v6 | ||
with: | ||
github-token: NO_NEED | ||
result-encoding: string | ||
script: return "${{ github.ref }}".substring(11) | ||
- name: Install Inno Setup | ||
run: | | ||
curl --retry 10 --retry-all-errors -L -o installer.exe https://jrsoftware.org/download.php/is.exe | ||
./installer.exe /verysilent /allusers /dir=inst | ||
sleep 60 | ||
- name: Download version-fox packages | ||
env: | ||
VFOX_VERSION: ${{ steps.version-fox-version.outputs.result }} | ||
DOWNLOAD_URL: https://github.com/${{ github.event.repository.full_name }}/releases/download | ||
run: | | ||
curl -L -o i386.zip ${{ env.DOWNLOAD_URL }}/v${{ env.VFOX_VERSION }}/vfox_${{ env.VFOX_VERSION }}_windows_i386.zip && unzip i386.zip | ||
curl -L -o x86_64.zip ${{ env.DOWNLOAD_URL }}/v${{ env.VFOX_VERSION }}/vfox_${{ env.VFOX_VERSION }}_windows_x86_64.zip && unzip x86_64.zip | ||
curl -L -o aarch64.zip ${{ env.DOWNLOAD_URL }}/v${{ env.VFOX_VERSION }}/vfox_${{ env.VFOX_VERSION }}_windows_aarch64.zip && unzip aarch64.zip | ||
- name: Compile by Inno Setup | ||
env: | ||
VFOX_VERSION: ${{ steps.version-fox-version.outputs.result }} | ||
run: | | ||
./inst/iscc vfox_windows_i386.iss | ||
./inst/iscc vfox_windows_x86_64.iss | ||
./inst/iscc vfox_windows_aarch64.iss | ||
- name: Upload Inno Setup Assets | ||
uses: version-fox/vfox-release-assets@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
release_id: ${{ github.event.release.id }} | ||
assets_path: inno_setup/Output/*.exe |
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
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
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
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
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
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
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