Merge 25.7 to develop #1645
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 DISCVR | |
| on: | |
| workflow_dispatch: | |
| push: | |
| pull_request: | |
| jobs: | |
| build-modules: | |
| # See: https://help.github.com/en/actions/reference/contexts-and-expression-syntax-for-github-actions#github-context | |
| # https://help.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables#default-environment-variables | |
| if: github.repository == 'BimberLabInternal/LabDevKitModules' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Build DISCVR" | |
| uses: bimberlabinternal/DevOps/githubActions/discvr-build@master | |
| with: | |
| artifactory_user: ${{secrets.artifactory_user}} | |
| artifactory_password: ${{secrets.artifactory_password}} | |
| # NOTE: permissions are limited on the default secrets.GITHUB_TOKEN, including updating workflows, so use a personal access token | |
| github_token: ${{ secrets.PAT }} | |