Christianity Conversion Improvements, Invictus 1.7 support, and Realm Divide Support #162
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: Build, test and publish | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build_local: | |
name: Build and publish local | |
if: github.repository_owner == 'ParadoxGameConverters' | |
runs-on: [ self-hosted, windows, noramdisk ] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: "Get previous tag" | |
if: ${{ github.event_name == 'push' }} | |
id: previoustag | |
uses: "WyriHaximus/github-action-get-previous-tag@v1" | |
- name: "Build converter sln" | |
run: | | |
cd "C:\Program Files\Microsoft Visual Studio\2022\Community\MSBuild\Current\Bin\" | |
.\MSBuild.exe -m -p:Configuration=Release $Env:GITHUB_WORKSPACE\ImperatorToCK2.sln -target:ImperatorToCK2 | |
- name: "Build converter jar" | |
run: | | |
cd $Env:GITHUB_WORKSPACE\ImperatorToCk2 | |
mvn package | |
- name: "Copy jar to Release directory" | |
run: | | |
cp ImperatorToCK2/target/ImperatorToCK2.jar Release/ImperatorToCK2 | |
- name: "Build converter executable" | |
run: | | |
cd $Env:GITHUB_WORKSPACE\ImperatorToCk2 | |
mvn -e -X clean verify | |
- name: "Copy backend to Release directory" | |
run: | | |
xcopy /y /r /s ImperatorToCk2\target\jpackage\ImperatorToCK2 Release\ImperatorToCK2\ | |
- name: "Replace frontend background image" | |
run: | | |
rm Fronter.NET/Fronter.NET/Assets/Images/background.png | |
cp Resources/images/SteamMainImage.png Fronter.NET/Fronter.NET/Assets/Images/background.png | |
- name: "Build frontend" | |
uses: ./Fronter.NET/.github/actions/build_frontend | |
with: | |
fronter_dir: 'Fronter.NET' | |
release_dir: 'Release' | |
- name: "Prepare release zip" | |
if: ${{ github.event_name == 'push' }} | |
run: | | |
cd "C:\Program Files\7-Zip\" | |
.\7z.exe a $Env:GITHUB_WORKSPACE\ImperatorToCK2-win-x64.zip $Env:GITHUB_WORKSPACE\Release\* | |
cp $Env:GITHUB_WORKSPACE\ImperatorToCK2-win-x64.zip $Env:GITHUB_WORKSPACE\ImperatorToCK2-latest.zip | |
- uses: actions/upload-artifact@v3 | |
if: ${{ github.event_name != 'push' }} | |
with: | |
path: Release/ | |
- name: "Upload binary to current release" | |
if: ${{ github.event_name == 'push' }} | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: ${{ steps.previoustag.outputs.tag }} | |
allowUpdates: true | |
omitBodyDuringUpdate: true | |
omitNameDuringUpdate: true | |
artifacts: ImperatorToCK2-win-x64.zip | |
token: ${{ secrets.API_TOKEN_GITHUB }} | |
- name: "Upload binary to latest release" | |
if: ${{ github.event_name == 'push' }} | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: latest | |
allowUpdates: true | |
omitBodyDuringUpdate: true | |
omitNameDuringUpdate: true | |
artifacts: ImperatorToCK2-latest.zip | |
token: ${{ secrets.API_TOKEN_GITHUB }} | |
- name: "Cleanup" | |
if: always() | |
run: | | |
Get-ChildItem -Path $Env:GITHUB_WORKSPACE -Recurse -Force | Remove-Item -force -recurse | |
build_foreign: | |
name: Build foreign | |
if: github.repository_owner != 'ParadoxGameConverters' | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: "Build converter sln" | |
run: | | |
cd "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\" | |
.\MSBuild.exe -m -p:Configuration=Release $Env:GITHUB_WORKSPACE\ImperatorToCK2.sln -target:ImperatorToCK2 | |
- name: "Build converter jar" | |
run: | | |
cd $Env:GITHUB_WORKSPACE\ImperatorToCk2 | |
mvn package | |
- name: "Copy jar to Release directory" | |
run: | | |
cp ImperatorToCK2/target/ImperatorToCK2.jar Release/ImperatorToCK2 | |
- name: "Build converter executable" | |
run: | | |
cd $Env:GITHUB_WORKSPACE\ImperatorToCk2 | |
mvn -e -X clean verify | |
- name: "Copy backend to Release directory" | |
run: | | |
xcopy /y /r /s ImperatorToCk2\target\jpackage\ImperatorToCK2 Release\ImperatorToCK2\ | |
- name: "Replace frontend background image" | |
run: | | |
rm Fronter.NET/Fronter.NET/Assets/Images/background.png | |
cp Resources/images/SteamMainImage.png Fronter.NET/Fronter.NET/Assets/Images/background.png | |
- name: "Build frontend" | |
uses: ./Fronter.NET/.github/actions/build_frontend | |
with: | |
fronter_dir: 'Fronter.NET' | |
release_dir: 'Release' | |
- uses: actions/upload-artifact@v3 | |
if: ${{ github.event_name != 'push' }} | |
with: | |
path: Release/ | |