Remove Polish translation (I don't want anything to do with Rectify11, also my translations are shit – feel free to replace them!) #731
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: Rectify11 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_run: | |
workflows: ["Submodules Sync"] | |
types: | |
- completed | |
jobs: | |
build: | |
runs-on: windows-latest | |
env: | |
NUGET_CERT_REVOCATION_MODE: offline | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
submodules: true | |
lfs: true | |
- name: Git Sumbodule Update | |
run: | | |
git submodule update --init --recursive | |
git submodule update --recursive --remote | |
- name: Add MSBuild to PATH | |
uses: microsoft/[email protected] | |
- name: Restore NuGet Packages | |
run: | | |
nuget restore Rectify11Installer.sln | |
- name: Build | |
run: msbuild Rectify11Installer.sln /p:Configuration=Release /p:platform=x64 | |
- name: Create single exe | |
run: Rectify11Installer\ILRepack.exe Rectify11Installer\bin\Release\Rectify11Installer.exe /out:Rectify11Installer\bin\output\Release\Rectify11Installer.exe Rectify11Installer\bin\Release\libmsstyle.dll Rectify11Installer\bin\Release\TaskDialog.dll | |
- name: Upload Rectify11Installer | |
uses: actions/[email protected] | |
with: | |
# Artifact name | |
name: Rectify11Installer (x64) | |
# A file, directory or wildcard pattern that describes what to upload | |
path: Rectify11Installer\bin\output\Release\Rectify11Installer.exe | |