Skip to content

Commit 8f2a173

Browse files
committed
updated build process
Signed-off-by: Arne Hamann <git@arne.email>
1 parent d69b9e5 commit 8f2a173

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ jobs:
3535
- name: Get current tag
3636
id: tag
3737
run: |
38+
git checkout release
3839
git fetch --tags --force
3940
tag=$(git tag -l --points-at HEAD)
4041
vtag=$(echo $tag | grep "^v[0-9]\+\.[0-9]\+\.[0-9]\+" || echo "")
@@ -56,7 +57,7 @@ jobs:
5657
sudo apt install make openssl -y
5758
echo "###### installing nextcloud"
5859
mkdir ~/html
59-
git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b v27.0.0 ~/html/nextcloud
60+
git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b v28.0.0 ~/html/nextcloud
6061
sed -i $'s|if (substr($fullPath, 0, strlen($root) + 1) === $root . \'/\')|if (is_string($root) and substr($fullPath, 0, strlen($root) + 1) === $root . \'/\')|g' ~/html/nextcloud/lib/autoloader.php
6162
cp -r $GITHUB_WORKSPACE ~/html/nextcloud/apps/${APP_ID}
6263
php ~/html/nextcloud/occ maintenance:install --database "sqlite" --admin-user "admin" --admin-pass "password"

0 commit comments

Comments
 (0)