Skip to content

Github action that retrieves ProjectSettings info for Unity project and outputs it via github actions output.

License

Notifications You must be signed in to change notification settings

Breakstep-Studios/unity-project-settings-info

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Unity Project Settings Info

Github action that retrieves ProjectSettings info for Unity project and outputs it via github actions output.

Outputs

  • bundle-version - The current bundle version found in the ProjectSettings.

Example Usage

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/unity-project-settings-info@v1.0.0
      - name: "Output Bundle Version"
        run: |
          echo bundleVersion: ${{ steps.unity-project-settings-info.outputs.bundle-version }}

TODO

Short Term

  • Outputting of commonly used ProjectSettings fields. Create issue / pr for modifications.

Long Term

  • Dynamic retrieval of various ProjectSettings values based on some input query?

About

Github action that retrieves ProjectSettings info for Unity project and outputs it via github actions output.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages