Skip to content

Commit

Permalink
fix: try again at fixing pi image
Browse files Browse the repository at this point in the history
  • Loading branch information
Julusian committed Feb 23, 2024
1 parent fa8bace commit 20feb5d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ jobs:
run: |
echo "BUILD_IS_TAG=${BUILD_IS_TAG}"
if [[ "$BUILD_IS_TAG" == "true" ]]; then
export BUILD_BRANCH=main
export BUILD_BRANCH=stable
export BUILD_VERSION="${{ steps.filenames.outputs.shortversion }}"
else
export BUILD_BRANCH=${GITHUB_REF_NAME}
Expand Down
6 changes: 3 additions & 3 deletions pi-image/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ git config --global pull.rebase false


# run the update script
if [ "$SATELLITE_BRANCH" == "main" ]; then
./pi-image/update.sh beta "$SATELLITE_BUILD"
else
if [ "$SATELLITE_BRANCH" == "stable" ]; then
./pi-image/update.sh stable "$SATELLITE_BUILD"
else
./pi-image/update.sh beta "$SATELLITE_BUILD"
fi

# enable start on boot
Expand Down

0 comments on commit 20feb5d

Please sign in to comment.