Skip to content

Move source files back to root directory #6

Move source files back to root directory

Move source files back to root directory #6

Workflow file for this run

name: Build DontEatMyContent
on:
push:
branches:
- develop
paths-ignore:
- 'README.md'
- 'LICENSE.md'
- '.github/workflows/build.yml'
- '.github/workflows/build-and-release.yml'
- control
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout DontEatMyContent
uses: actions/[email protected]
with:
submodules: recursive
- name: Checkout Theos
uses: actions/[email protected]
with:
repository: theos/theos
ref: master
path: theos
submodules: recursive
- name: Install dependencies
run: |
brew install ldid
# bash -c "$(curl -fsSL https://raw.githubusercontent.com/roothide/theos/master/bin/install-theos)"
- name: Build
run: |
make package FINALPACKAGE=1
make package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=rootless
# make package FINALPACKAGE=1 THEOS_PACKAGE_SCHEME=roothide
PACKAGES=$(ls packages/ | grep .deb)
if [ -z "$PACKAGES" ]; then
echo "No packages found."
exit 1
fi
env:
THEOS: ${{ github.workspace }}/theos
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: Packages
path: packages/