Tempo 0.5.6, Enable TempoROS (#42) #66
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
| # ====== | |
| # Build and Package Workflow for the TempoSample project. | |
| # This workflow uses the generic Build and Package workflow in Tempo to build and package | |
| # the TempoSample project. | |
| # ====== | |
| name: Build and Package the TempoSample Project | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build_and_package: | |
| name: Build and Package TempoSample | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| uses: tempo-sim/Tempo/.github/workflows/build_and_package.yml@release | |
| strategy: | |
| matrix: | |
| platform: [ ubuntu-22.04, ubuntu-24.04 ] | |
| unreal_version: [ 5.4, 5.5, 5.6 ] | |
| with: | |
| clean: false | |
| platform: ${{ matrix.platform }} | |
| unreal_version: ${{ matrix.unreal_version }} | |
| secrets: inherit |