Skip to content

Commit

Permalink
GHA: Use Ubuntu 22.04 for uploading to launchpad
Browse files Browse the repository at this point in the history
Ubuntu 24.04 uses a newer bzr/brz/breezy that requires a
semi-interactive login to launchpad failing CI.
  • Loading branch information
Flamefire committed Jan 17, 2025
1 parent 9e71607 commit 5c800e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/synchronize-launchpad.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
upload:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04 # We need bzr < 3.3 for non-interactive login
steps:
- name: Install dependencies
run: |
Expand All @@ -34,7 +34,7 @@ jobs:
(cd "$GITHUB_WORKSPACE" && git fast-export -M --all) | (cd bzr-repo && bzr fast-import -)
- name: Login to launchpad
run: bzr launchpad-login --no-check ${{ secrets.LAUNCHPAD_USER }}
run: bzr launchpad-login ${{ secrets.LAUNCHPAD_USER }}

- name: Upload to launchpad
working-directory: bzr-repo/trunk
Expand Down

0 comments on commit 5c800e7

Please sign in to comment.