update build pipeline #27
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 application | |
on: | |
push: | |
branches: [ develop ] | |
#paths: | |
# - Application/** | |
# - .github/workflows/build_application.yml | |
# - '!**/*.yml' | |
# - '!*.yml' | |
env: | |
releaseType: Prerelease | |
jobs: | |
make_version: | |
runs-on: ubuntu-latest | |
outputs: | |
build_num: ${{ steps.generate_build_number.outputs.build_num }} | |
steps: | |
- name: Make build number | |
id: generate_build_number | |
run: | | |
build_num=$(date +'%Y.%-m.%-d').$(date +'%3N' | sed 's/^0*//') | |
echo "build_num=$build_num" >> $GITHUB_OUTPUT | |
echo "Build number is $build_num" | |
build: | |
runs-on: ubuntu-latest | |
needs: [ make_version ] | |
env: | |
solution: IW4MAdmin.sln | |
buildConfiguration: Prerelease | |
isPreRelease: false | |
buildPlatform: Any CPU | |
outputFolder: ${{ github.workspace }}/Publish/Prerelease | |
buildNumber: ${{ needs.make_version.outputs.build_num }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore NuGet packages | |
run: dotnet restore ${{ env.solution }} | |
- name: Preload external resources | |
run: | | |
echo "Build Configuration is ${{ env.buildConfiguration }}, Release Type is ${{ env.releaseType }}" | |
mkdir -p WebfrontCore/wwwroot/lib/open-iconic/font/css | |
curl -o WebfrontCore/wwwroot/lib/open-iconic/font/css/open-iconic-bootstrap-override.scss https://raw.githubusercontent.com/iconic/open-iconic/master/font/css/open-iconic-bootstrap.scss | |
sed -i 's#../fonts/#/font/#g' WebfrontCore/wwwroot/lib/open-iconic/font/css/open-iconic-bootstrap-override.scss | |
- name: Build webfront | |
run: dotnet build WebfrontCore/WebfrontCore.csproj -c ${{ env.buildConfiguration }} /p:Configuration=${{ env.buildConfiguration }} /p:Platform="x64" | |
- name: Compile SCSS files | |
run: | | |
dotnet tool install Excubo.WebCompiler --global | |
webcompiler -r WebfrontCore/wwwroot/css/src -o WebfrontCore/wwwroot/css/ -m disable -z disable | |
webcompiler WebfrontCore/wwwroot/lib/open-iconic/font/css/open-iconic-bootstrap-override.scss -o WebfrontCore/wwwroot/css/ -m disable -z disable | |
- name: Bundle JS Files | |
run: | | |
echo 'Getting dotnet bundle' | |
curl -o ${{ github.workspace }}/dotnet-bundle.zip https://raidmax.org/IW4MAdmin/res/dotnet-bundle.zip | |
echo 'Unzipping download' | |
unzip ${{ github.workspace }}/dotnet-bundle.zip -d ${{ github.workspace }}/bundle | |
echo 'Executing dotnet-bundle' | |
cd ${{ github.workspace }}/bundle | |
dotnet dotnet-bundle.dll clean ${{ github.workspace }}/WebfrontCore/bundleconfig.json | |
dotnet dotnet-bundle.dll ${{ github.workspace }}/WebfrontCore/bundleconfig.json | |
- name: Build plugins | |
run: | | |
cd Plugins | |
find . -name "*.csproj" -print0 | xargs -0 -I {} dotnet publish {} -c ${{ env.buildConfiguration }} -o ../BUILD/Plugins /p:Configuration=${{ env.buildConfiguration }} /p:Platform="x64" /p:DeployOnBuild=false /p:PackageAsSingleFile=false /p:SkipInvalidConfigurations=true /p:Version=${{ env.buildNumber }} --no-restore | |
- name: Build application | |
run: dotnet publish Application/Application.csproj -c ${{ env.buildConfiguration }} -o ${{ env.outputFolder }} /p:Version=${{ env.buildNumber }} /p:Configuration=${{ env.buildConfiguration }} /p:Platform="x64" --no-restore | |
- name: Download translations | |
run: | | |
mkdir -p "${{ env.outputFolder }}/Localization" | |
localizations=("en-US" "ru-RU" "es-EC" "pt-BR" "de-DE") | |
for localization in "${localizations[@]}" | |
do | |
url="https://master.iw4.zip/localization/$localization" | |
filePath="${{ env.outputFolder }}/Localization/IW4MAdmin.$localization.json" | |
curl -s "$url" -o "$filePath" | |
done | |
- name: Clean up publish files | |
run: | | |
chmod +x ${{ github.workspace }}/Application/BuildScripts/PostBuild.sh | |
bash ${{ github.workspace }}/Application/BuildScripts/PostBuild.sh ${{ env.outputFolder }} ${{ github.workspace }} | |
- name: Move script plugins into publish directory | |
run: cp ${{ github.workspace }}/Plugins/ScriptPlugins/*.js ${{ env.outputFolder }}/Plugins/ | |
- name: Move binary plugins into publish directory | |
run: cp ${{ github.workspace }}/BUILD/Plugins/*.dll ${{ env.outputFolder }}/Plugins/ | |
- name: Move webfront resources into publish directory | |
run: cp -r ${{ github.workspace }}/BUILD/Plugins/wwwroot ${{ env.outputFolder }}/ | |
- name: Move gamescript files into publish directory | |
run: cp -r ${{ github.workspace }}/GameFiles ${{ env.outputFolder }}/ | |
- name: Upload artifact for analysis | |
uses: actions/upload-artifact@v4 | |
with: | |
name: IW4MAdmin-${{ env.buildNumber }} | |
path: ${{ env.outputFolder }} | |
release_github: | |
runs-on: ubuntu-latest | |
needs: [ make_version, build ] | |
permissions: | |
contents: write | |
env: | |
buildNumber: ${{ needs.make_version.outputs.build_num }} | |
steps: | |
- name: Download build | |
uses: actions/download-artifact@v4 | |
with: | |
name: IW4MAdmin-${{ env.buildNumber }} | |
path: ${{ github.workspace }} | |
- name: Zip build | |
run: zip -r IW4MAdmin-${{ env.buildNumber }}.zip ${{ github.workspace }}/* | |
- name: Make release | |
uses: ncipollo/release-action@v1 | |
with: | |
tag: ${{ env.buildNumber }}-${{ env.releaseType }} | |
name: IW4MAdmin ${{ env.buildNumber }} (${{ env.releaseType }}) | |
draft: true | |
body: Automated rolling release - changelog below. [Updating Instructions](https://github.com/RaidMax/IW4M-Admin/wiki/Getting-Started#updating) | |
generateReleaseNotes: true | |
artifacts: ${{ github.workspace }}/*.zip | |
artifactErrorsFailBuild: true |