mirror of
https://github.com/angt/secret
synced 2024-12-25 21:58:25 +01:00
11625a500a
Signed-off-by: Adrien Gallouët <adrien@gallouet.fr>
23 lines
401 B
YAML
23 lines
401 B
YAML
name: Build
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macOS-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Build
|
|
run: |
|
|
git submodule update --init --recursive
|
|
make prefix=. install
|
|
|
|
- uses: actions/upload-artifact@v1
|
|
with:
|
|
name: ${{ matrix.os }}
|
|
path: ./bin
|