Skip to content

Commit

Permalink
install dev-releases only on dev-release
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed Jan 11, 2025
1 parent aba6656 commit 8eb9715
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/eventbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,9 @@ jobs:
### ONLY THIS RELEVANT FOR BUILDING ###
- uses: actions/checkout@v4
- name: Print dev-build if dev-release
- name: check for dev-release
if: ${{ env.BRANCH == 'dev-release' || env.BRANCH == 'add-ramdisk' }}
run: |
ls -a
touch additionalFiles/dev-build
- name: update
run: sudo apt-get update
Expand Down
2 changes: 2 additions & 0 deletions stages/02-Packages/00-run-chroot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,9 @@ function install_openhd {
# Add OpenHD Repository platform-specific packages
apt install -y curl
curl -1sLf 'https://dl.cloudsmith.io/public/openhd/release/setup.deb.sh'| sudo -E bash
if [[ -f "additionalFiles/dev-build" ]]; then
curl -1sLf 'https://dl.cloudsmith.io/public/openhd/dev-release/setup.deb.sh'| sudo -E bash
fi
apt update

# Remove platform-specific packages
Expand Down

0 comments on commit 8eb9715

Please sign in to comment.