Skip to content

Commit

Permalink
Support building for rootless
Browse files Browse the repository at this point in the history
  • Loading branch information
NyaMisty committed Nov 10, 2023
1 parent 4d8f947 commit 001c26e
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,16 @@ jobs:
- name: Prepare Theos
uses: Randomblock1/theos-action@v1

- name: Build package
- name: Build Release package - Rootful Substrate
run: |
rm -f packages/*
make package FINALPACKAGE=1
make clean
TAGNAME=${{ steps.tag.outputs.tag }}
make package FINALPACKAGE=1 PACKAGE_VERSION=${TAGNAME#v}+rootful
- name: Build Release package - Rootless Substrate
run: |
make clean
TAGNAME=${{ steps.tag.outputs.tag }}
make package ROOTLESS=1 FINALPACKAGE=1 PACKAGE_VERSION=${TAGNAME#v}+rootless
- name: Upload to GitHub Actions artifact
uses: NyaMisty/upload-artifact-as-is@master
Expand Down

0 comments on commit 001c26e

Please sign in to comment.