Skip to content

Commit

Permalink
action
Browse files Browse the repository at this point in the history
  • Loading branch information
camila314 committed Jan 15, 2025
1 parent 498e99d commit f98be38
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build Github Action
on: [push]

jobs:
build:
strategy:
fail-fast: false
matrix:
config:
- name: win
os: windows-latest
path: build/Release/*.lib
ext: lib

- name: mac
os: macos-latest
path: build/*.a
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: ${{ matrix.config.path }}
name: libgeode-ipc.${{ matrix.config.ext }}

0 comments on commit f98be38

Please sign in to comment.