ClassiCube/.github/workflows/build_xbox.yml
2024-02-18 21:11:40 +11:00

45 lines
No EOL
1.4 KiB
YAML

name: Build latest (Xbox)
on: [push]
concurrency:
group: ${{ github.ref }}-xbox
cancel-in-progress: true
jobs:
build-Xbox:
if: github.ref_name == github.event.repository.default_branch
runs-on: ubuntu-latest
container:
image: ghcr.io/xboxdev/nxdk:git-e955705a
steps:
- uses: actions/checkout@v4
- name: Compile Xbox build
id: compile
run: |
eval $(/usr/src/nxdk/bin/activate -s)
make xbox
# otherwise notify_failure doesn't work
- name: Install curl when necessary
if: ${{ always() && steps.compile.outcome == 'failure' }}
run: apk add curl curl-dev
- uses: ./.github/actions/notify_failure
if: ${{ always() && steps.compile.outcome == 'failure' }}
with:
NOTIFY_MESSAGE: 'Failed to compile Xbox build'
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
SOURCE_FILE: 'bin/default.xbe'
DEST_NAME: 'ClassiCube-xbox.xbe'
- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
SOURCE_FILE: 'ClassiCube-xbox.iso'
DEST_NAME: 'ClassiCube-xbox.iso'