Skip to content

Try with other image #4

Try with other image

Try with other image #4

Workflow file for this run

name: Build latest (DS)
on: [push]
concurrency:
group: ${{ github.ref }}-ds
cancel-in-progress: true
jobs:
build-DS:
if: github.ref_name == github.event.repository.default_branch
runs-on: ubuntu-latest
container:
image: skylyrac/blocksds:dev-latest
steps:
- uses: actions/checkout@v3
- name: Compile DS build
id: compile
run: |
make ds
- uses: ./.github/actions/notify_failure
if: ${{ always() && steps.compile.outcome == 'failure' }}
with:
NOTIFY_MESSAGE: 'Failed to compile DS build'
WEBHOOK_URL: '${{ secrets.WEBHOOK_URL }}'
- uses: ./.github/actions/upload_build
if: ${{ always() && steps.compile.outcome == 'success' }}
with:
SOURCE_FILE: 'ClassiCube-ds.nds'
DEST_NAME: 'ClassiCube-ds.nds'