fix: bug in scribe code for TradeShipData #6
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 | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "README.md" | |
- "CHANGELOG.md" | |
- ".gitignore" | |
tags-ignore: | |
# This will ignore release versions tagged with a version identifier. We'll | |
# use a separate workflow for them. | |
- "v*" | |
pull_request: | |
paths-ignore: | |
- README.md | |
- "CHANGELOG.md" | |
- ".gitignore" | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Build Mod for 1.5 | |
env: | |
RimWorldVersion: 1.5 | |
run: dotnet build .vscode --configuration Release | |
- name: Build Mod for 1.4 | |
env: | |
RimWorldVersion: 1.4 | |
run: dotnet build .vscode --configuration Release | |
- name: Upload Mod Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: RealisticOrbitalTrade-${{ github.sha }} | |
path: | | |
About/ | |
1.5/ | |
1.4/ | |
Common/ | |
Defs/ | |
Patches/ | |
LICENSE | |
LICENSE.Apache-2.0 | |
LICENSE.MIT | |
README.md | |
CHANGELOG.md | |
!**/.* | |
!About/*.pdn | |
!About/*.svg | |
!About/*.ttf |