From 737fe3aa7af6a38f1a6a5ac96588e3a54b7ee09f Mon Sep 17 00:00:00 2001 From: Bruno Carlin Date: Fri, 27 Dec 2024 01:43:34 +0100 Subject: [PATCH] fixaction): appimage run needs an env var --- action.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/action.yaml b/action.yaml index 0aaba5c..c4b2d56 100644 --- a/action.yaml +++ b/action.yaml @@ -29,15 +29,13 @@ runs: working-directory: ${{ github.action_path }} run: | set -x - apt-get update && apt-get install libfuse2 - modprobe fuse - INSTALL_PATH=${INSTALL_PATH:-/opt/${TARGET%%:*}} ./setup-browser install \ -cache-path cache \ -install-to "$INSTALL_PATH" \ "${TARGET}" echo "$(dirname "$INSTALL_PATH")" >> "$GITHUB_PATH" + echo "APPIMAGE_EXTRACT_AND_RUN=true" >> "$GITHUB_ENV" shell: bash env: TARGET: ${{ inputs.target }}