Skip to content

Fix LogCareerFailure failing outside Career mode #165

Fix LogCareerFailure failing outside Career mode

Fix LogCareerFailure failing outside Career mode #165

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: build
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 100
- name: Download required assemblies
id: download-assemblies
shell: bash
env:
KSP_ZIP_PASSWORD: ${{ secrets.KSP_ZIP_PASSWORD }}
run: |
curl https://ksp-ro.s3-us-west-2.amazonaws.com/KSPAssemblies-1.12.zip --output /tmp/bins.zip
KSP_DLL_PATH="/opt/ksp/assembly"
echo "::set-output name=ksp-dll-path::${KSP_DLL_PATH}"
mkdir -p "${KSP_DLL_PATH}"
unzip -P "${KSP_ZIP_PASSWORD}" '/tmp/bins.zip' -d "${KSP_DLL_PATH}"
rm '/tmp/bins.zip'
- name: Build mod solution
run: |
rm -f ${GITHUB_WORKSPACE}/GameData/TestFlight/Plugins/*.dll
mkdir -p "${GITHUB_WORKSPACE}/GameData/TestFlight/Plugins/"
msbuild /p:Configuration=Release /p:ReferencePath="${{ steps.download-assemblies.outputs.ksp-dll-path }}" TestFlight.sln
cp -v ${GITHUB_WORKSPACE}/bin/Release/TestFlight.dll ${GITHUB_WORKSPACE}/GameData/TestFlight/Plugins/TestFlight.dll
cp -v ${GITHUB_WORKSPACE}/TestFlightAPI/TestFlightAPI/bin/Release/TestFlightAPI.dll ${GITHUB_WORKSPACE}/GameData/TestFlight/Plugins/TestFlightAPI.dll
cp -v ${GITHUB_WORKSPACE}/TestFlightCore/TestFlightCore/bin/Release/TestFlightCore.dll ${GITHUB_WORKSPACE}/GameData/TestFlight/Plugins/TestFlightCore.dll
cp -v ${GITHUB_WORKSPACE}/TestFlightContracts/bin/Release/TestFlightContracts.dll ${GITHUB_WORKSPACE}/GameData/TestFlight/Plugins/TestFlightContracts.dll
- name: Setup python
uses: actions/setup-python@v2
- name: Build metadata
shell: bash
run: |
python ${GITHUB_WORKSPACE}/makeMeta.py 2.0.0.0
- name: Assemble release
id: assemble-release
run: |
RELEASE_DIR="${RUNNER_TEMP}/release"
echo "Release dir: ${RELEASE_DIR}"
mkdir -v "${RELEASE_DIR}"
echo "::set-output name=release-dir::${RELEASE_DIR}"
cp -v -R "${GITHUB_WORKSPACE}/GameData" "${RELEASE_DIR}"
- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: TestFlight
path: ${{ steps.assemble-release.outputs.release-dir }}