diff --git a/.editorconfig b/.editorconfig index c713fa0..51723a2 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,6 +5,3 @@ indent_style = space indent_size = 4 insert_final_newline = true trim_trailing_whitespace = true - -[*.yaml] -indent_size = 2 \ No newline at end of file diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml deleted file mode 100644 index 5ec7474..0000000 --- a/.woodpecker/build.yaml +++ /dev/null @@ -1,13 +0,0 @@ -steps: - - name: build - image: woodpeckerci/plugin-docker-buildx - settings: - platforms: linux/amd64 - repo: stawros/allure - registry: hattori.ztsh.eu - tags: ${CI_COMMIT_TAG} - username: stawros - password: - from_secret: hattori_pat - when: - - event: tag diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index a26484d..0000000 --- a/Dockerfile +++ /dev/null @@ -1,27 +0,0 @@ -#The MIT License (MIT) -#Copyright 2020-2023 Anton Aftakhov - -FROM openjdk:8-jre-alpine - -ARG RELEASE=2.27.0 -ARG ALLURE_REPO=https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline - -RUN echo "$RELEASE" && \ - apk update && \ - apk add --no-cache bash wget unzip && \ - rm -rf /var/cache/apk/* - -RUN wget --no-verbose -O /tmp/allure-"$RELEASE".tgz "$ALLURE_REPO"/"$RELEASE"/allure-commandline-"$RELEASE".tgz && \ - tar -xf /tmp/allure-"$RELEASE".tgz && \ - rm -rf /tmp/* && \ - chmod -R +x /allure-"$RELEASE"/bin - -ENV ROOT=/app \ - PATH=$PATH:/allure-$RELEASE/bin - -RUN mkdir -p "$ROOT" - -WORKDIR $ROOT -COPY ./entrypoint.sh /entrypoint.sh - -ENTRYPOINT ["/entrypoint.sh"] diff --git a/entrypoint.sh b/entrypoint.sh deleted file mode 100644 index 8010903..0000000 --- a/entrypoint.sh +++ /dev/null @@ -1,2 +0,0 @@ -ls -alh -allure --version