From c06c28ce4bd52e88f0119b2051940b373e0ee562 Mon Sep 17 00:00:00 2001 From: AEkaterina Date: Fri, 6 Oct 2023 21:55:04 +0400 Subject: [PATCH] updated step to install allure --- .github/workflows/maven.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 4c0fb03..f2ed46a 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -46,9 +46,11 @@ jobs: - name: Install Allure run: | - sudo apt-add-repository ppa:qameta/allure - sudo apt-get update - sudo apt-get install allure + wget https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/2.16.0/allure-commandline-2.16.0.zip + unzip allure-commandline-2.16.0.zip + sudo mv allure-2.16.0 /opt/allure + export PATH=$PATH:/opt/allure/bin + allure --version if: runner.os == 'Linux' - name: Run tests