fix: detect entity deletion by Zeus and scripts via null tracking (#109) #226
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup HEMTT | |
| uses: arma-actions/hemtt@v1 | |
| - name: Run HEMTT check | |
| run: hemtt check | |
| - name: Run HEMTT build | |
| run: hemtt build | |
| - name: Upload build artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: ocap-build | |
| path: .hemttout/build/ | |
| retention-days: 7 |