diff options
author | Joseph Donofry <rubberduckie3554@gmail.com> | 2023-02-28 17:44:22 -0500 |
---|---|---|
committer | Joseph Donofry <rubberduckie3554@gmail.com> | 2023-02-28 17:44:22 -0500 |
commit | e7275386038708c1868fa39f98ee1f8fcef139c9 (patch) | |
tree | 1fc7df9d1920b8a98c8d8b54d7a2098410de2785 /.gitlab-ci.yml | |
parent | Fix macOS artifact names and fix jq quotes issue (diff) | |
download | nheko-e7275386038708c1868fa39f98ee1f8fcef139c9.tar.xz |
Remove test configurations
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 460d9c9c..c386b4c1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -186,7 +186,7 @@ build-flatpak-amd64: after_script: - bash ./.ci/upload-nightly-gitlab.sh build-flatpak/nheko-amd64.flatpak - (cd ./scripts && ./upload-to-flatpak-repo.sh ../build-flatpak/repo) || true - - (cd $CI_BUILDS_DIR && mkdir -p artifacts && cp build-flatpak/nheko-amd64.flatpak artifacts/) || true + - (cd .. && mkdir -p artifacts && cp build-flatpak/nheko-amd64.flatpak artifacts/) || true rules: - if : '$CI_PIPELINE_TRIGGERED == null' cache: @@ -218,9 +218,9 @@ build-flatpak-arm64: after_script: - bash ./.ci/upload-nightly-gitlab.sh build-flatpak/nheko-arm64.flatpak - (cd ./scripts && ./upload-to-flatpak-repo.sh ../build-flatpak/repo) || true - - (cd $CI_BUILDS_DIR && mkdir -p artifacts && cp build-flatpak/nheko-arm64.flatpak artifacts/) || true + - (cd .. && mkdir -p artifacts && cp build-flatpak/nheko-arm64.flatpak artifacts/) || true rules: - - if : '$CI_PIPELINE_TRIGGERED == "123456"' + - if : '$CI_PIPELINE_TRIGGERED == null' cache: key: "$CI_JOB_NAME" paths: @@ -316,7 +316,7 @@ github-release: image: alpine:latest tags: [docker] rules: - - if: '$CI_COMMIT_TAG =~ /^test\d+\.\d+\.\d+$/' + - if: '$CI_COMMIT_TAG =~ /^v\d+\.\d+\.\d+$/' dependencies: - appimage-amd64 - build-flatpak-arm64 |