Skip to content

no message

no message #629

Workflow file for this run

---
name: Build Targets
on:
push:
paths-ignore:
- '**.md'
- '.gitignore'
pull_request:
paths-ignore:
- '**.md'
- '.gitignore'
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip build]')"
name: ${{ matrix.target }}
runs-on: macos-13
strategy:
fail-fast: false
matrix:
target:
- quakespasm-exp
steps:
- uses: actions/checkout@v4
- name: Build target
run: |
./build.py --target ${{ matrix.target }}
- name: Generate Xcode project
run: |
./build.py --target ${{ matrix.target }} --xcode
- name: List Build Directory
if: always()
shell: bash
run: |
git status
ls -lR .
...