Composite actions and a new native matrix build #387
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
| # This Action will build the SDK and if this succeeds, trigger a build on the | |
| # jMonkeyEngine/sdk-update-center repository, so that NBMs get built and | |
| # deployed | |
| name: Nightly NBM Deployment | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| jobs: | |
| BuildSDK: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build the SDK | |
| uses: ./.github/actions/build-sdk | |
| NBMDeployment: | |
| needs: [BuildSDK] | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' | |
| steps: | |
| - name: Deploy NBMs | |
| uses: ./.github/actions/nbm-deployment | |
| with: | |
| token: ${{ secrets. UPDATE_CENTER_PAT }} |