Move documentation out of the README to the wiki #24
Workflow file for this run
This file contains hidden or 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: | |
| pull_request: | |
| workflow_call: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: KSPModdingLibs/KSPBuildTools/.github/actions/setup-ckan@0.0.4 | |
| - uses: KSPModdingLibs/KSPBuildTools/.github/actions/install-dependencies@0.0.4 | |
| with: | |
| dependency-identifiers: Harmony2 | |
| - uses: KSPModdingLibs/KSPBuildTools/.github/actions/compile@0.0.4 | |
| - uses: KSPModdingLibs/KSPBuildTools/.github/actions/assemble-release@0.0.4 | |
| with: | |
| output-file-name: HUDReplacer | |
| # The build step already copies the relevant files into GameData so we | |
| # don't need to include the defaults here | |
| artifacts: GameData | |
| - run: tree | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| path: GameData/HUDReplacer/HUDReplacer.version | |
| name: HUDReplacer.version |