Github action that retrieves ProjectSettings info for Unity project and outputs it via github actions output.
bundle-version
- The current bundle version found in the ProjectSettings.
name: Project Settings Info
on: workflow_dispatch
jobs:
get-project-info:
runs-on: ubuntu-latest
name: "A job to test unity-project-settings-info"
steps:
- name: "Checkout"
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: "Unity Project Settings Info"
id: unity-project-settings-info
uses: Breakstep-Studios/[email protected]
- name: "Output Bundle Version"
run: |
echo bundleVersion: ${{ steps.unity-project-settings-info.outputs.bundle-version }}
- Outputting of commonly used ProjectSettings fields. Create issue / pr for modifications.
- Dynamic retrieval of various ProjectSettings values based on some input query?