Skip to content

Commit

Permalink
github action
Browse files Browse the repository at this point in the history
  • Loading branch information
camila314 committed Jan 15, 2025
1 parent 498e99d commit aa09bd2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
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@v2
with:
path: build/*.${{ matrix.config.ext }}
name: libgeode-ipc.${{ matrix.config.ext }}

0 comments on commit aa09bd2

Please sign in to comment.