Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/launchpad_ppa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,26 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}

- name: Preserve current packaging overlay
if: steps.check_distro.outputs.should_run == 'true'
run: |
rm -rf /tmp/bssh-packaging
mkdir -p /tmp/bssh-packaging
cp -a debian /tmp/bssh-packaging/debian

- name: Check out release tag
if: steps.check_distro.outputs.should_run == 'true'
uses: actions/checkout@v4
with:
ref: ${{ steps.get_tag.outputs.tag }}
fetch-depth: 0

- name: Restore current packaging overlay
if: steps.check_distro.outputs.should_run == 'true'
run: |
rm -rf debian
cp -a /tmp/bssh-packaging/debian debian

- name: Update debian/changelog from release
if: steps.check_distro.outputs.should_run == 'true'
run: |
Expand Down
Loading