New Crowdin updates (#702) #29
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 release | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| jobs: | |
| build-release: | |
| runs-on: ${{ matrix.runner }} | |
| strategy: | |
| matrix: | |
| include: | |
| - runner: windows-2025 | |
| arch: x64 | |
| installer: Installer-x64.iss | |
| - runner: windows-11-arm | |
| arch: arm64 | |
| installer: Installer-arm64.iss | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Install NuGet | |
| uses: nuget/setup-nuget@v1 | |
| - name: Restore NuGet dependencies | |
| run: nuget restore | |
| - name: Decode certificate | |
| shell: bash | |
| run: echo ${{ secrets.PFX_CERTIFICATE_FILE }} | base64 --decode > ./EverythingToolbar.snk | |
| - name: Build all | |
| run: MSBuild $Env:GITHUB_WORKSPACE /p:Configuration=Release /p:Platform=${{ matrix.arch }} | |
| - name: Install Inno Setup | |
| run: choco install innosetup -y --version 6.5.4 --allow-downgrade | |
| - name: Build installer | |
| run: iscc /F"EverythingToolbar-${{ github.ref_name }}-${{ matrix.arch }}" "Installer\${{ matrix.installer }}" | |
| - name: Generate SHA-256 checksum | |
| shell: bash | |
| run: sha256sum Installer/output/EverythingToolbar-${{ github.ref_name }}-${{ matrix.arch }}.exe > Installer/output/EverythingToolbar-${{ github.ref_name }}-${{ matrix.arch }}.sha256 | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: EverythingToolbar ${{ github.ref_name }} ${{ matrix.arch }} | |
| path: | | |
| Installer/output/EverythingToolbar-${{ github.ref_name }}-${{ matrix.arch }}.exe | |
| Installer/output/EverythingToolbar-${{ github.ref_name }}-${{ matrix.arch }}.sha256 | |
| - name: Create release draft | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh release create "${{ github.ref_name }}" ` | |
| "Installer/output/EverythingToolbar-${{ github.ref_name }}-${{ matrix.arch }}.exe" ` | |
| "Installer/output/EverythingToolbar-${{ github.ref_name }}-${{ matrix.arch }}.sha256" ` | |
| --draft ` | |
| --title "${{ github.ref_name }}" |