Skip to content

attempt to fix actions #3

attempt to fix actions

attempt to fix actions #3

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
container: ghcr.io/primedecomp/build:main
strategy:
fail-fast: false
matrix:
version: [SZBE69]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Git config
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Prepare
run: cp -R /orig .
- name: Build
run: |
python configure.py --map --version ${{matrix.version}} --compilers /compilers
ninja
- name: Upload map
uses: actions/upload-artifact@v3
with:
name: ${{matrix.version}}_maps
path: build/${{matrix.version}}/**/*.MAP