Skip to content

action

action #2

Workflow file for this run

name: Build Github Action
on: [push]
jobs:
build:
strategy:
fail-fast: false
matrix:
config:
- name: win
os: windows-latest
ext: lib
- name: mac
os: macos-latest
ext: a
name: ${{ matrix.config.name }}
runs-on: ${{ matrix.config.os }}
steps:
- uses: actions/checkout@v4
- uses: nicledomaS/[email protected]
- uses: actions/upload-artifact@v4
with:
path: build/*.${{ matrix.config.ext }}
name: libgeode-ipc.${{ matrix.config.ext }}