Fix wrong parameter used for state file url #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push, pull_request] | |
jobs: | |
theos: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Set up Theos | |
uses: Randomblock1/theos-action@v1 | |
- name: Build package | |
run: | | |
export PACKAGE_BUILDNAME=$(git rev-parse --short HEAD)-rootless | |
make clean package THEOS_PACKAGE_SCHEME=rootless FINALPACKAGE=1 | |
export PACKAGE_BUILDNAME=$(git rev-parse --short HEAD)-rootful | |
make clean package FINALPACKAGE=1 | |
- name: Upload package | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ./packages/com.beeper.beepserv_*.deb | |
name: phone-registration-provider | |
if-no-files-found: error |