diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index aa255bc..893dec4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -114,13 +114,13 @@ deploy:arch-bin: - git config --global user.name "$COMMITER_NAME" - git config --global user.email "$COMMITER_EMAIL" # Clone the repo - - git clone $BIN_REPO_URL $PROJECT_NAME-bin + - git clone $BIN_REPO_URL tiempo-bin # generate the PKGBUILD in the current directory - scripts/release-aur-bin.sh - - mv PKGBUILD $PROJECT_NAME-bin/ - - mv .SRCINFO $PROJECT_NAME-bin/ + - mv PKGBUILD tiempo-bin/ + - mv .SRCINFO tiempo-bin/ # commit - - cd $PROJECT_NAME-bin + - cd tiempo-bin - git add . - git commit -m "Release version $CI_COMMIT_TAG" - git push @@ -142,13 +142,13 @@ deploy:arch-git: - git config --global user.name "$COMMITER_NAME" - git config --global user.email "$COMMITER_EMAIL" # clone the repo - - git clone $GIT_REPO_URL $PROJECT_NAME-git + - git clone $GIT_REPO_URL tiempo-git # finally run the script - scripts/release-aur-git.sh - - mv PKGBUILD $PROJECT_NAME-bin/ - - mv .SRCINFO $PROJECT_NAME-bin/ + - mv PKGBUILD tiempo-bin/ + - mv .SRCINFO tiempo-bin/ # and commit - - cd $PROJECT_NAME-bin + - cd tiempo-bin - git add . - git commit -m "Release version $VERSION" - git push