* (***ADDB***) Patch Tool: Fix patching some other Blueprints causing… #240
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 Mod on Push | |
on: | |
push: | |
jobs: | |
build: | |
if: ${{ !startsWith(github.ref, 'refs/tags/') }} | |
runs-on: windows-latest | |
steps: | |
- name: Build | |
id: build-action | |
uses: xADDBx/BuildOwlcatMod@v2 | |
with: | |
GAME_NAME: RogueTrader | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_NAME: ${{ github.repository_owner }} | |
PACKAGE_OWNER: xADDBx | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.zipFile }} | |
path: ${{ env.outDir }} |