From e9f11d6f5a6276c6bb04c86337258f05cada097e Mon Sep 17 00:00:00 2001 From: Jan Vermaete Date: Sat, 26 Oct 2024 12:49:26 +0200 Subject: [PATCH] github: changed the working directory from OpenDDS to opendss-VERSION To fix the warning: dpkg-source: warning: source directory 'OpenDDS' is not - 'opendds-3.30' Signed-off-by: Jan Vermaete --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index efe77d1..285ee16 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,22 +31,22 @@ jobs: uses: actions/checkout@v4 with: repository: 'OpenDDS/OpenDDS' - path: OpenDDS + path: opendds-3.30 ref: 'DDS-3.30' - name: Copy debian Directory - run: cp -r OpenDDS-Debian/debian OpenDDS/debian + run: cp -r OpenDDS-Debian/debian opendds-3.30/debian - name: Build Package run: | - cd OpenDDS + cd opendds-3.30 dpkg-buildpackage -us -uc cd .. cp opendds_*.deb opendds.deb - name: Commit New Deb run: | - cd OpenDDS + cd opendds-3.30 SHA=$(git rev-parse --short HEAD) cd ../OpenDDS-Debian git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"