mirror of
https://github.com/angt/secret
synced 2024-12-25 21:58:25 +01:00
24 lines
401 B
YAML
24 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
|