Skip to content

Commit

Permalink
Fix gh action
Browse files Browse the repository at this point in the history
Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
  • Loading branch information
angt committed Jan 16, 2025
1 parent 875180f commit 93c9924
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,16 @@
name: Build

on: [push]

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
name: Build
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Build
run: |
git submodule update --init --recursive
make prefix=. install
- name: Checkout
uses: actions/checkout@v4

- name: Update submodules
run: git submodule update --init --recursive

- uses: actions/upload-artifact@v1
with:
name: ${{ matrix.os }}
path: ./bin
- name: Build
run: make

0 comments on commit 93c9924

Please sign in to comment.