Skip to content

Create build.yml

Create build.yml #1

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Check cache
run: |
echo upstream_heads=`git ls-remote https://github.com/theos/theos | head -n 1 | cut -f 1`-`git ls-remote https://github.com/theos/sdks | head -n 1 | cut -f 1` >> $GITHUB_ENV
- name: Use cache
id: cache
uses: actions/cache@v3
with:
path: ${{ github.workspace }}/theos
key: ${{ runner.os }}-${{ env.upstream_heads }}
- name: Prepare Theos
# Don't use @main in production, this repo is specifically for testing it.
uses: Randomblock1/theos-action@main
- name: Build package
run: |
rm -f packages/*
make package FINALPACKAGE=1
- name: Upload package
uses: actions/upload-artifact@v3
with:
name: "Package built by ${{ matrix.os }}"
path: ${{ github.workspace }}/packages/*.deb