diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2025-01-04 18:20:09 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2025-01-04 18:20:09 -0300 |
commit | 4ae38614ff762ba02545f8aab8cbd006df318487 (patch) | |
tree | 1aebb989aa11e5075f77f83439a429c5a5ec3f0f | |
parent | b0bf21b02ec2cd08881562d6abbd0fbed1e40539 (diff) | |
download | keyringer-4ae38614ff762ba02545f8aab8cbd006df318487.tar.gz keyringer-4ae38614ff762ba02545f8aab8cbd006df318487.tar.bz2 |
Fix: CI: run git pull to update local copies (#10)
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 11e580b..281d60f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,6 +41,7 @@ debian: - git fetch --all - git branch debian --track origin/debian || true - git checkout debian + - git pull - gbp buildpackage --git-ignore-new --git-upstream-signatures=no --git-no-sign-tags -us -uc # Run lintian @@ -69,11 +70,13 @@ test: - git fetch --all - git branch debian --track origin/debian || true - git checkout debian + - git pull - gpg --import < debian/upstream/signing-key.asc # Create a test keyring in the develop branch - git branch develop --track origin/develop || true - git checkout develop + - git pull - mkdir -p ~/temp/tests - git config --global user.name 'Test' - git config --global user.email 'test@example.org' |