mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
92 lines
2.7 KiB
YAML
92 lines
2.7 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches: [dev, main]
|
|
paths-ignore:
|
|
- "docs/**"
|
|
- "*.md"
|
|
- "NewHorizons/Schemas/**"
|
|
- "LICENSE"
|
|
- ".gitignore"
|
|
pull_request:
|
|
paths-ignore:
|
|
- "docs/**"
|
|
- "*.md"
|
|
- "NewHorizons/Schemas/**"
|
|
- "LICENSE"
|
|
- ".gitignore"
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
GH_ACTIONS: 'true'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: windows-latest
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
# Set to Release if we're in master, otherwise keep us in Debug
|
|
- name: Set Release
|
|
if: github.ref == 'refs/heads/main'
|
|
run: echo "BUILD_TYPE=Release" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
|
|
|
|
- name: Set Debug
|
|
if: github.ref != 'refs/heads/main'
|
|
run: echo "BUILD_TYPE=Debug" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
|
|
|
|
- uses: actions/setup-dotnet@v1
|
|
|
|
# Disable Strong Name Verification to let us pull a switch-a-roo
|
|
- name: Disable strong name validation
|
|
run: "C:\\\"Program Files (x86)\"\\\"Microsoft SDKs\"\\Windows\\v10.0A\\bin\\\"NETFX 4.8 Tools\"\\x64\\sn.exe -Vr *"
|
|
|
|
- name: Remove .csproj.user
|
|
run: "rm .\\NewHorizons\\NewHorizons.csproj.user"
|
|
|
|
- name: Build Project
|
|
run: dotnet build -c $Env:BUILD_TYPE
|
|
|
|
- name: Generate Schemas
|
|
run: .\SchemaExporter\bin\${{ env.BUILD_TYPE }}\SchemaExporter.exe
|
|
|
|
- name: Delete XML documentation
|
|
run: rm .\NewHorizons\bin\${{ env.BUILD_TYPE }}\NewHorizons.xml
|
|
|
|
- name: Upload Mod Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: xen.NewHorizons.${{ env.BUILD_TYPE }}
|
|
path: .\NewHorizons\bin\${{ env.BUILD_TYPE }}
|
|
|
|
- name: Upload Schemas Artifact
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: NewHorizons-Schemas-${{ env.BUILD_TYPE }}
|
|
path: .\NewHorizons\Schemas
|
|
|
|
# Only want to commit schemas if they've actually changed
|
|
- name: Verify Changed Schemas
|
|
uses: tj-actions/verify-changed-files@v9.1
|
|
id: changed_files
|
|
with:
|
|
files: NewHorizons\Schemas\**
|
|
|
|
- name: Commit Schemas
|
|
if: steps.changed_files.outputs.files_changed == 'true'
|
|
run: |
|
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
git config --local user.name "github-actions[bot]"
|
|
git add NewHorizons\Schemas\**
|
|
git commit -m "Updated Schemas"
|
|
|
|
- name: Push Schemas
|
|
if: ${{ (steps.changed_files.outputs.files_changed == 'true') && (github.event_name != 'pull_request') }}
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.github_token }}
|
|
branch: ${{ github.ref }}
|
|
|