Skip to content

Commit 4e2a471

Browse files
committed
fix linux build
1 parent 95e363e commit 4e2a471

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,11 +67,13 @@ jobs:
6767
- name: install deps
6868
run: myci-deb-install-build-deps.sh
6969
- name: build
70-
run: dpkg-buildpackage --unsigned-source --unsigned-changes
70+
run: |
71+
cd build
72+
dpkg-buildpackage --unsigned-source --unsigned-changes
7173
- name: deploy deb packages
7274
run: |
7375
echo "${{ secrets.MYCI_REPO_SSH_KEY }}" > repo_key_rsa && chmod 600 repo_key_rsa
74-
myci-deploy-apt-ssh.sh --key repo_key_rsa --server gagis.hopto.org --repo cppfw/${{ matrix.os }} --distro ${{ matrix.codename }} --component main ../lib${PACKAGE_NAME}*_${PACKAGE_VERSION}_*.*deb
76+
myci-deploy-apt-ssh.sh --key repo_key_rsa --server gagis.hopto.org --repo cppfw/${{ matrix.os }} --distro ${{ matrix.codename }} --component main lib${PACKAGE_NAME}*_${PACKAGE_VERSION}_*.*deb
7577
if: matrix.package_type == 'deb' && startsWith(github.ref, 'refs/tags/')
7678
##### macosx #####
7779
macosx:

0 commit comments

Comments
 (0)