From 90da88de18b7216c28eccf56d129754da4669e7e Mon Sep 17 00:00:00 2001 From: Andy Bunce Date: Wed, 12 Feb 2025 12:12:40 +0000 Subject: [PATCH] [fix] --- .gitea/workflows/trigger/release | 2 +- .github/actions/install-basex/action.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/trigger/release b/.gitea/workflows/trigger/release index 7c13845..d7cf583 100644 --- a/.gitea/workflows/trigger/release +++ b/.gitea/workflows/trigger/release @@ -5,4 +5,4 @@ Xyxh 4456 9.7.4 xyxz01x ab -iiiis \ No newline at end of file +iiiisA \ No newline at end of file diff --git a/.github/actions/install-basex/action.yaml b/.github/actions/install-basex/action.yaml index 710047b..4968f9e 100644 --- a/.github/actions/install-basex/action.yaml +++ b/.github/actions/install-basex/action.yaml @@ -16,18 +16,18 @@ runs: wget https://files.basex.org/releases/$BASEX_VERSION/BaseX$BASEX_CLEAN_VERSION.zip -O BaseX.zip - name: Unzip BaseX - shell: "bash" + shell: bash run: | unzip BaseX.zip -d $HOME rm BaseX.zip - name: Add BaseX to PATH - shell: "bash" + shell: bash run: | echo "BASEX_ROOT=$HOME/basex" >> $GITHUB_ENV echo "PATH=$PATH:$HOME/basex/bin" >> $GITHUB_ENV - name: Verify BaseX installation - shell: "bash" + shell: bash run: | - basex -v" \ No newline at end of file + basex -v \ No newline at end of file