gba: implement write protection for HALTCNT #309
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: Push | |
| on: | |
| push | |
| concurrency: | |
| group: '${{ github.workflow }} @ ${{ github.head_ref || github.ref }}' | |
| cancel-in-progress: true | |
| permissions: | |
| contents: write | |
| jobs: | |
| build: | |
| name: Build ares (primary) | |
| uses: ./.github/workflows/build.yml | |
| secrets: inherit | |
| with: | |
| codesign: true | |
| official: ${{ github.ref_name == 'master' || github.ref_type == 'tag' }} | |
| build-aux: | |
| name: Build ares (auxiliary) | |
| uses: ./.github/workflows/build-aux.yml | |
| secrets: inherit | |
| release: | |
| name: Release | |
| needs: build | |
| secrets: inherit | |
| uses: ./.github/workflows/release.yml | |
| with: | |
| notarize: true |