2.10.6 #5
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: Build Publish | |
| on: | |
| release: | |
| types: [published] | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| configuration: [Release] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set Describe | |
| shell: bash | |
| run: | | |
| describe=`git describe --tags --always` | |
| echo "describe=$describe" >> $GITHUB_ENV | |
| - name: Setup MSBuild.exe | |
| uses: microsoft/setup-msbuild@v2 | |
| with: | |
| msbuild-architecture: x64 | |
| - name: Update Help | |
| run: | | |
| $workpath = [System.Environment]::CurrentDirectory | |
| Set-Location .. | |
| git clone https://github.com/LTCatt/PCL2Help.git -b master --single-branch --depth 1 | |
| Set-Location PCL2Help | |
| Remove-Item -Path *.* -Recurse -Force | |
| Compress-Archive -Path .\* -DestinationPath .\Help.zip | |
| Copy-Item -Path .\Help.zip -Destination "${{ GITHUB.WORKSPACE }}\Plain Craft Launcher 2\Resources\Help.zip" -Force | |
| Set-Location .. | |
| Remove-Item PCL2Help -Recurse -Force | |
| Set-Location ${{ GITHUB.WORKSPACE }} | |
| - name: Replace | |
| run: | | |
| (gc "Plain Craft Launcher 2\Modules\ModSecret.vb") -replace 'Public Const OAuthClientId As String = ""', 'Public Const OAuthClientId As String = "${{ secrets.CLIENT_ID }}"' | Out-File "Plain Craft Launcher 2\Modules\ModSecret.vb" | |
| (gc "Plain Craft Launcher 2\Modules\ModSecret.vb") -replace 'Public Const CurseForgeAPIKey As String = ""', 'Public Const CurseForgeAPIKey As String = "${{ secrets.CURSEFORGE_API_KEY }}"' | Out-File "Plain Craft Launcher 2\Modules\ModSecret.vb" | |
| (gc "Plain Craft Launcher 2\Modules\Base\ModBase.vb") -replace 'Public Const CommitHash As String = ""', 'Public Const CommitHash As String = "${{ github.sha }}"' | Out-File "Plain Craft Launcher 2\Modules\Base\ModBase.vb" | |
| - name: Build | |
| run: msbuild "Plain Craft Launcher 2\Plain Craft Launcher 2.vbproj" -p:Configuration=${{ matrix.configuration }} | |
| - name: Rename build artifact | |
| run: | | |
| mv "Plain Craft Launcher 2\obj\${{ matrix.configuration }}\Plain Craft Launcher 2.exe" "Plain Craft Launcher 2\obj\${{ matrix.configuration }}\PCL2_Lang.exe" | |
| - name: Upload binary to Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: | | |
| Plain Craft Launcher 2\obj\${{ matrix.configuration }}\PCL2_Lang.exe |