Skip to content

Commit d38e15e

Browse files
committed
Test LP connection
1 parent 749db4f commit d38e15e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/synchronize-launchpad.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: Synchronize with Launchpad
66

77
on:
88
push:
9-
branches: [ master ]
9+
branches: [ master, test ]
1010
workflow_dispatch:
1111

1212
jobs:
@@ -16,7 +16,9 @@ jobs:
1616
- name: Install dependencies
1717
run: |
1818
sudo apt-get -o Acquire::Retries=3 update
19-
sudo apt-get -o Acquire::Retries=3 install -y openssh-client git bzr-fastimport
19+
sudo apt-get -o Acquire::Retries=3 upgrade -y
20+
sudo apt-get -o Acquire::Retries=3 install -y bzr-fastimport
21+
pip list
2022
2123
- uses: actions/checkout@v4
2224
with:
@@ -34,7 +36,7 @@ jobs:
3436
(cd "$GITHUB_WORKSPACE" && git fast-export -M --all) | (cd bzr-repo && bzr fast-import -)
3537
3638
- name: Login to launchpad
37-
run: bzr launchpad-login ${{ secrets.LAUNCHPAD_USER }}
39+
run: bzr launchpad-login --verbose ${{ secrets.LAUNCHPAD_USER }}
3840

3941
- name: Upload to launchpad
4042
working-directory: bzr-repo/trunk

0 commit comments

Comments
 (0)