Skeleton replacer and interface improvements. #23
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 PR | |
on: | |
pull_request_target: | |
types: [labeled] | |
jobs: | |
build: | |
if: ${{ contains(github.event.pull_request.labels.*.name, 'safe to test') }} | |
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 | |
BRANCH_REF: ${{ github.event.pull_request.head.sha }} | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ${{ env.zipFile }} | |
path: ${{ env.outDir }} | |
- name: Remove Test Label | |
if: always() | |
shell: bash | |
run: | | |
curl --silent --fail-with-body \ | |
-X DELETE \ | |
-H "Accept: application/vnd.github+json" \ | |
-H "Authorization: Bearer ${{ secrets.WRITE_PR_TOKEN }}" \ | |
-H "X-GitHub-Api-Version: 2022-11-28" \ | |
'https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.number }}/labels/safe%20to%20test' |